Devora
Assessments

Binary Search Assessment

Test your understanding of binary search on sorted arrays.

AlgorithmsEasy

Question 1

What is the time complexity of binary search on a sorted array?

Question 2

Which condition ends the binary search loop?

Question 3

After checking arr[mid] < target, what happens?

Question 4

Binary search works on any unsorted array.