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