ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the time complexity of uniform binary search?
Correct Answer: B — O(logn)
With every iteration we are dividing the array into two parts(though not equal halves), the complexity remains same as the normal binary search.