Question: What is the worst-case scenario for the number of comparisons in binary search?
Options:
Correct Answer: log n
Solution:
In the worst case, binary search will make log n comparisons, where n is the number of elements in the array.