Loading practice questions
Choose the incorrect statement about exponential search from the following.
Correct Answer: B — Exponential search has a greater time complexity than binary search
Explanation:
Time complexity of exponential search and binary search are the same. But exponential search performs better than binary search when the element being searched is present near the starting point of the array.