Multiple choice

Which of the following is searching a hash table extremely fast just to find the hash value for the item that you're looking for, then goes to that index and start searching the array until you find what you are looking for or you hit a blank spot?

  1. Linear search

  2. Binary search

  3. Hash search

  4. Interpolation search

  5. Recursive binary search

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

This type of search is searching a hash table extremely fast just to find the hash value for the item that you're looking for.