Question: How does binary search determine the next interval to search?
Options:
Correct Answer: By comparing the target with the middle element
Solution:
Binary search determines the next interval by comparing the target with the middle element and deciding which half to continue searching.