Question: Which of the following is a common method for handling collisions in hash tables?
Options:
Correct Answer: Chaining
Solution:
Chaining is a common collision resolution technique where each slot in the hash table points to a linked list of entries that hash to the same index.