Recall & Review
beginner
What is the main idea behind the Bubble Sort Algorithm?
Bubble Sort repeatedly compares adjacent elements and swaps them if they are in the wrong order, "bubbling" the largest unsorted element to the end in each pass.
Click to reveal answer
beginner
How many passes does Bubble Sort make in the worst case for an array of size n?
In the worst case, Bubble Sort makes n-1 passes through the array.
Click to reveal answer
beginner
What is the time complexity of Bubble Sort in the average and worst cases?
The time complexity is O(n²) because it compares and swaps elements in nested loops.
Click to reveal answer
intermediate
How can Bubble Sort be optimized to stop early if the array is already sorted?
By adding a flag to check if any swaps happened in a pass; if no swaps occur, the array is sorted and the algorithm stops early.
Click to reveal answer
beginner
Show the state of the array after the first pass of Bubble Sort on [5, 3, 8, 4, 2].
After first pass: [3, 5, 4, 2, 8] because 5 swaps with 3, then 8 stays, 4 swaps with 8, 2 swaps with 8.
Click to reveal answer
What does Bubble Sort do in each pass through the array?
✗ Incorrect
Bubble Sort compares adjacent elements and swaps them if needed, moving the largest unsorted element to the end.
What is the best case time complexity of Bubble Sort when optimized with a swap flag?
✗ Incorrect
If the array is already sorted, the optimized Bubble Sort stops after one pass, resulting in O(n) time.
Which of these is NOT true about Bubble Sort?
✗ Incorrect
With optimization, Bubble Sort can stop early if no swaps occur, so it does not always require n-1 passes.
After the first pass of Bubble Sort on [4, 2, 7, 1], what is the array?
✗ Incorrect
Swaps happen between 4 and 2, then 7 and 1, resulting in [2, 4, 1, 7].
Which sorting algorithm is generally faster than Bubble Sort for large datasets?
✗ Incorrect
Merge Sort has better time complexity O(n log n) and is faster on large datasets than Bubble Sort's O(n²).
Explain how Bubble Sort works step-by-step on a small array.
Think about how bubbles rise to the surface in water.
You got /4 concepts.
Describe one way to optimize Bubble Sort and why it helps.
Consider what happens if the array is already sorted.
You got /4 concepts.