Multiple choice technology web technology

Two different keys with the same hash value is hash-collision in Hashtable.Two different entries will be kept in a single hash bucket to avoid the collision.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A hash collision occurs when two different keys produce the same hash value. In Java's Hashtable, these colliding entries are stored in a single bucket (traditionally using a linked list) to resolve the collision, making the statement true.