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