ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Jump search is worse than linear search in terms of time complexity.
Correct Answer: B — False
Linear search has a time complexity of O(n) and the time complexity of jump search is O(n^{1/2}). So jump search is better than linear search in terms of time complexity.