Question: In a binary search, if the middle element is greater than the target, which half of the array is searched next?
Options:
Correct Answer: Left half
Solution:
If the middle element is greater than the target, the left half of the array is searched next.