Question: What happens if the target value is not present in the sorted array during a binary search?
Options:
Correct Answer: The search will return -1
Solution:
If the target value is not present, binary search will return -1 or a similar indicator of absence.