Question: In a recursive implementation of binary search, what is the base case?
Options:
Correct Answer: When the left index exceeds the right index
Solution:
The base case for recursion in binary search is when the left index exceeds the right index, indicating the target is not found.