ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Given an array arr = {45,77,89,90,94,99,100} and key = 99; what are the mid values(corresponding array elements) in the first and second levels of recursion?
Correct Answer: A — 90 and 99
At first level key = 90
At second level key= 99
Here 90 and 99 are mid values.