Question:medium

How many minimum number of comparisons are required to search an element from 'n' elements in Linear Search?

Updated On: Jan 16, 2026
  • 1
  • n - 1
  • n
  • n + 1
Show Solution

The Correct Option is A

Solution and Explanation

To establish the fewest comparisons needed for Linear Search, we examine its operation. Linear Search sequentially checks every list item from the start until the target is found or the list concludes.

The optimal scenario occurs when the target is the list's initial element. Here, a single comparison suffices. Consequently, the minimum comparison count is: 1

The process for achieving this minimum in Linear Search involves:

  • Comparing the target element to the list's first element.
  • If they match, the search concludes.

This demonstrates that the best-case for Linear Search necessitates only one comparison, affirming the correct result: 1.

Was this answer helpful?
0


Questions Asked in CUET (UG) exam