Question: What is the worst-case scenario for the number of comparisons in binary search on an array of size n?
Options:
Correct Answer: log n
Solution:
In the worst case, binary search makes log n comparisons to find the target or determine its absence.