Question: What is the average time complexity for searching an element in a hash table?
Options:
Correct Answer: O(1)
Solution:
The average time complexity for searching an element in a hash table is O(1) due to the direct access provided by the hash function.