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