Loading practice questions
Jump search is worse than linear search in terms of time complexity.
Correct Answer: B — False
Explanation:
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.