Question: What is the time complexity of searching for an element in a well-designed hash table?
Options:
Correct Answer: O(1)
Solution:
In a well-designed hash table, the average time complexity for searching is O(1), assuming a good hash function and low collision rate.