Multiple choice

How many types of approaches are there to search operations?

  1. 2

  2. 3

  3. 4

  4. 5

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

There are two primary approaches to search operations: sequential (linear) search and binary search. Linear search checks elements one by one, while binary search divides the search space in half repeatedly. Other specialized searches (interpolation, jump, exponential) are variations of these fundamental approaches.