Given a hash table T with 25 slots that stores 2000 elements, the load factor…
2023
Given a hash table T with 25 slots that stores 2000 elements, the load factor α for T is __________
Answer: A. 80 — Explanation: load factor = (no. of elements) / (no. of table slots) = 2000/25 = 80
- A.
80
- B.
0.0125
- C.
8000
- D.
1.25
Attempted by 295 students.
Show answer & explanation
Correct answer: A
Explanation:
load factor = (no. of elements) / (no. of table slots) = 2000/25 = 80
Loading lesson…