Question: What is the result of performing binary search on a sorted array for an element not present in the array?
Options:
Correct Answer: An indication that the element is not found
Solution:
Binary search will indicate that the element is not found, typically returning a sentinel value or -1.