Loading practice questions
Which of the following searching algorithm is used with exponential sort after finding the appropriate range?
Correct Answer: B — Binary search
Explanation:
In exponential search, we first find a range where the required elements should be present in the array. Then we apply binary search in this range.