Question: How does binary search determine the middle element of the array?
Options:
Correct Answer: Using the first and last index
Solution:
Binary search calculates the middle element using the formula (low + high) / 2, where low and high are the current bounds.