ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the best case runtime of linear search(recursive) algorithm on an ordered set of elements?
Correct Answer: A — O(1)
The best case occurs when the given element to be found is at the first position. Therefore O(1) is the correct answer.