Question: What is the time complexity of searching for an element in a hash table in the average case?
Options:
Correct Answer: O(1)
Solution:
In the average case, searching for an element in a hash table has a time complexity of O(1) due to direct indexing.