Question: In binary search, if the target value is not found, what will be the return value?
Options:
Correct Answer: -1
Solution:
Typically, binary search returns -1 to indicate that the target value is not present in the array.