CorrectAnswer
Each slot in the hash table gets 1/100 of the range.
Given that we have 10,000 key values (0 to 9999), there are 100 values that hash to each slot.
We can compute this simply by calculating key/100 (rounding down).
The answer is CorrectAnswer.