Question: What modification is needed to perform binary search on a rotated sorted array?
Options:
Correct Answer: Modify the mid-point calculation
Solution:
To perform binary search on a rotated sorted array, the mid-point calculation must be adjusted to account for the rotation.