Loading practice questions
Which of the following searching algorithm is fastest?
(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.