100 Khan.randRange(5, 10) hashFuncSsimple.genKey(len) hashFuncSsimple.genAnswer(key, M)
Given a hash table size of 100, a key that is a string, use the simple sum of the ASCII values function to calculate a hash value that will then be set to a value within the table size using the simple mod function. What slot in the table will key hash to?

CorrectAnswer

Use the simple sum of the ASCII values calculator to help you.

Take the answer it gives, and mod by 100.

The answer is CorrectAnswer.