Question: In a hash table, what happens when the load factor exceeds a certain threshold?
Options:
Correct Answer: The table is resized and rehashed
Solution:
When the load factor exceeds a certain threshold, the hash table is typically resized and all existing entries are rehashed to maintain efficient access times.