Hashing - Study Mode
[#26] How does linear probing handle collisions in a hash table?
Correct Answer
(B) By searching sequentially for the next available slot.
[#27] What is a common drawback of quadratic probing in hash tables?
Correct Answer
(C) It may lead to secondary clustering.
[#28] Which of the following operations is not commonly used in hash table implementations?
Correct Answer
(D) Sorting elements
[#29] What is the effect of increasing the size of a hash table on performance?
Correct Answer
(A) It generally reduces the load factor and collisions.
[#30] Which probing method is best suited for reducing clustering in a hash table?
Correct Answer
(D) Quadratic probing