Year 11 • Plenary

Sorting Algorithms Quiz

A short check on merge sort, insertion sort, and bubble sort.

How it works

Select one answer for each question, then check your score.

Plenary Quiz

1. Which algorithm uses divide and conquer by splitting the list and then merging?

Answer: Merge sort splits the data set in half and merges it back together.

2. Which algorithm inserts each item into its correct position one at a time?

Answer: Insertion sort builds a sorted list one item at a time.

3. Which algorithm compares adjacent items and swaps them if they are out of order?

Answer: Bubble sort swaps adjacent items to move the largest/smallest item along.

4. Which statement best fits merge sort?

Answer: Merge sort is efficient and works well for large data sets.

5. Which statement best fits insertion sort?

Answer: Insertion sort is particularly useful for inserting into a sorted list.

6. Which statement best fits bubble sort?

Answer: Bubble sort is very easy to implement but inefficient.

One Thing I Learned

Write one key idea you will remember from today’s lesson.