Question: In a binary search algorithm, if the middle element is greater than the target, what should be done next?
Options:
Correct Answer: Search the left half
Solution:
If the middle element is greater than the target, the search continues in the left half of the array.