ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Jump search has a better time complexity than the exponential search.
Correct Answer: B — False
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.