ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Exponential search performs better than binary search when the element being searched is present near the starting point of the array.
Correct Answer: A — True
Exponential search first finds the range where binary search needs to be applied. So when the element is present near the starting point of the array then exponential search performs better than standard binary search.