Question: How can binary search be modified to find the first occurrence of a target value in a sorted array with duplicates?
Options:
Correct Answer: Modify the mid-point logic
Solution:
By modifying the mid-point logic to continue searching in the left half even after finding the target.