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

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

ID: #15247 Time Complexity 138 views
Question Info
#15247Q 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

Bubble sort is a simple comparison-based sorting algorithm that repeatedly steps through the array, compares adjacent elements, and swaps them if they are in the wrong order. In the worst case, where the array is sorted in reverse order, each pass of the algorithm will result in the largest unsorted element "bubbling" to the end of the array. 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.