Loading practice questions
Which of the following searching algorithm is fastest?
Correct Answer: B — binary search
Explanation:
Binary search has the least time complexity (equal to log n) out of the given searching algorithms. This makes binary search preferable in most cases.