Multiple choice Selection sort's average 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 makes n-1 passes, each time scanning remaining unsorted elements to find the minimum. This always requires roughly n²/2 comparisons, giving O(n²) in all cases.