InterviewSolution
Saved Bookmarks
| 1. |
A hash table may become full in the case when we use open addressing.(a) true(b) falseI'd like to ask this question from Hash Tables in chapter Hash Tables of Data Structures & Algorithms IThe question was posed to me in semester exam. |
|
Answer» CORRECT CHOICE is (a) true The EXPLANATION is: A hash table may become full in the case when we use OPEN ADDRESSING. But when we use separate chaining it does not happen. |
|