Home »
MCQs »
Data Structure and Algorithms (DSA) MCQs
Which of the following search algorithms does not require collection to be sorted first?
26. Which of the following search algorithms does not require collection to be sorted first?
- Linear Search
- Interpolation Search
- Binary Search
- None of the above
Answer
The correct answer is: A) Linear Search
Explanation
Interpolation and Binary Search both require data to be sorted first. Linear search can work with unsorted data.