Multiple choice Selection sort's worst case time complexity is O(n2) O(nlogn) O(logn) O(n) Reveal answer Fill a bubble to check yourself A Correct answer Explanation Selection sort always performs n-1 passes with decreasing comparisons per pass, totaling approximately n²/2 comparisons regardless of input order, giving O(n²) in all cases.