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