Question: If the target value is not present in a sorted array, what will binary search return?
Options:
Correct Answer: -1 or a sentinel value
Solution:
If the target value is not found, binary search typically returns -1 or a sentinel value indicating absence.