Loading practice questions
Jump search has a better time complexity than the exponential search.
Correct Answer: B — False
Explanation:
The worst case time complexity of jump search and exponential searches are O(n1/2) and O(log n) respectively. So exponential search is better in terms of time complexity.