Skip to content

Course home

Sorting algorithms

Sorting algorithms

EasyMediumHard
123456789101112131415161718192021222324252627
Question 9

Complete the trace table for the algorithm shown below. Some values have already been entered. You may not need to use all the rows in the table.

1  list[0] ← 1
2  list[1] ← 5
3  list[2] ← 8
4  FOR p ← 0 TO 1
5      FOR q ← 0 TO 1
6          IF list[q] < list[q + 1] THEN
7              val ← list[q]
8              list[q] ← list[q + 1]
9              list[q + 1] ← val
10         ENDIF
11     ENDFOR
12 ENDFOR
list[0]list[1]list[2]pqval
158
[6]
Markscheme

Sorting algorithms Questions

  1. GCSE
  2. /Computer Science
  3. /Sorting algorithms

52 exam-style questions on AQA GCSE Computer Science Sorting algorithms. Each one has a worked solution and a mark scheme showing where the marks go.

Question bank