Question:medium

Match the following algorithms with their worst-case time complexities.

Show Hint

Remember the standard worst-case complexities: \[ \text{Linear Search} = O(n) \] \[ \text{Binary Search} = O(\log n) \] \[ \text{Selection Sort} = O(n^2) \] These are among the most frequently asked complexities in competitive exams and interviews.
Updated On: Jun 25, 2026
  • A-III, B-II, C-I
  • A-II, B-III, C-I
  • A-I, B-II, C-III
  • A-I, B-III, C-II
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0