ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Given an array arr = {5,6,77,88,99} and key = 88; How many iterations are done until the element is found?
Correct Answer: D — 2
Iteration1 : mid = 77; Iteration2 : mid = 88;