ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the time complexity of Fibonacci Search?
Correct Answer: A — O(logn)
Since it divides the array into two parts, although not equal, its time complexity is O(logn), it is better than binary search in case of large arrays.