Question: In a binary search algorithm, what happens if the middle element is less than the target?
Options:
Correct Answer: Search the right half
Solution:
If the middle element is less than the target, the search continues in the right half of the array.