logo

Question detail

What is the time complexity of binary search?

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

At a glance

MCQ

Type

practice

Style

Topic

Searching algorithms

Exam-style question

Try this first

What is the time complexity of binary search?.

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

Model answer

What a good answer should say

  • O(log n)

Explanation

Why this works

Binary search repeatedly halves the part of the list that still needs to be searched, giving a time complexity of O(log 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.