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