1) When collisions are handled by separate chaining. 2) When collisions are handled by linear probing. 3) When collisions are handled by double hashing using second hash function $\mathrm{h}^{\prime}=5-(5 \bmod \mathrm{k})$.

Explanation

Separate chaining is a technique used to handle collisions in hash tables by storing colliding elements in separate linked lists. Linear probing is a technique used to handle collisions by probing the next slot in the table. Double hashing is a technique used to handle collisions by using a second hash function to map the key to a different index in the table.


โฌ† Related Topic

View Topic Hub โ†’

๐Ÿ“˜ Syllabus

View KERALA UNIVERSITY Class 3 Syllabus โ†’

๐Ÿ“ Practice Questions

Practice Previous Year Questions โ†’

๐Ÿค– Practice with AI

Generate Practice Question Paper โ†’


๐Ÿ“š Related Concepts