Question: In binary search, what is the formula to find the middle index?
Options:
Correct Answer: (low + high) / 2
Solution:
The middle index is calculated using (low + high) / 2.