Multiple choice Bubble 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 Bubble sort uses nested loops to compare adjacent elements, leading to an average time complexity of O(n^2).