Multiple choice Insertion 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 In the worst case, such as a reverse-sorted array, every element must be compared and shifted across all previously sorted elements, leading to O(n^2).