ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the worst case runtime of linear search(recursive) algorithm?
Correct Answer: A — O(n)
In the worst case scenario, there might be a need of calling the stack n times. Therfore O(n).