Question: In a binary search algorithm, if the target is less than the mid element, what should be the next step?
Options:
Correct Answer: Search the left half
Solution:
If the target is less than the mid element, the search should continue in the left half of the array.