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 has a nested loop structure, resulting in a time complexity of O(n^2) for all cases.