Given an array $A = \{15, 23, 27, 32, 45, 49, 60\}$ and key = 49, what are the mid values (corresponding array elements) in the first and second levels of recursion?
Show Hint
Track indices and recalculate mid for each recursive call in binary search.