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