Question: What will be the return value of binary search if the element is not found?
Options:
Correct Answer: -1
Solution:
Typically, binary search returns -1 to indicate that the element was not found in the array.