Loading practice questions
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
Explanation:
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.