Question: What will be the output of binary search if the target value is not present in the array?
Options:
Correct Answer: -1
Solution:
If the target value is not found, binary search typically returns -1 to indicate absence.