InterviewSolution
Saved Bookmarks
| 1. |
Which of the following technique is used for handling collisions in a hash table?(a) Open addressing(b) Hashing(c) Searching(d) Hash functionThe origin of the question is Hash Tables in portion Hash Tables of Data Structures & Algorithms II had been asked this question during an interview. |
|
Answer» RIGHT ANSWER is (a) Open addressing To explain: Open addressing is the technique which is used for HANDLING COLLISIONS in a hash table. Separate CHAINING is another technique which is used for the same purpose. |
|