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