Data Structure Time Complexity Question #15253
MCQ Single Best Answer Easy

QWhat is the time complexity of a selection sort algorithm for sorting an array of n elements in the worst case?

ID: #15253 Time Complexity 175 views
Question Info
#15253Q ID
EasyDifficulty
Time ComplexityTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A O(1)
  • B O(log n)
  • C O(n)
  • D O(n^2)
Correct Answer: Option D

Explanation

Selection sort is a simple comparison-based sorting algorithm that repeatedly selects the smallest element from the unsorted part of the array and swaps it with the element at the beginning of the unsorted part. In the worst case, for each pass of the algorithm, the smallest remaining element needs to be found by iterating through the unsorted part. This requires n-1 comparisons in the first pass, n-2 in the second pass, and so on, resulting in a quadratic time complexity of O(n^2).

Share This Question

Challenge a friend or share with your study group.