ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
The array is as follows: 1,2,3,6,8,10. Given that the number 17 is to be searched. At which call it tells that there's no such element (By using linear search(recursive) algorithm)
Correct Answer: A — 7th call
The function calls itself till the element is found. But at the 7th call it terminates as goes outside the array.