logo

Question detail

A search algorithm halves the remaining search area after each comparison. Which time complexity best describes the algorithm in the general case?

Try the question, check the answer, then read the explanation to understand the curriculum point.

At a glance

MCQ

Type

practice

Style

Topic

Classification of algorithms

Exam-style question

Try this first

A search algorithm halves the remaining search area after each comparison. Which time complexity best describes the algorithm in the general case?.

  1. A.O(1)
  2. B.O(log n)
  3. C.O(n)
  4. D.O(n^2)

Model answer

What a good answer should say

  • O(log n)

Explanation

Why this works

If the remaining problem is repeatedly divided by two, the number of steps grows logarithmically with n.

Common mistake

No common mistake is linked to this question yet.

Related flashcards

No flashcards are published for this page yet.

Related practice questions

No questions are published for this page yet.