Question: What happens if the array is not sorted before performing a binary search?
Options:
Correct Answer: It will give incorrect results
Solution:
If the array is not sorted, binary search will give incorrect results because it relies on the order of elements.