Skip to content
MathsGenie logo
Open app

Course home

  1. GCSE
  2. Computer Science Edexcel
  3. Question bank

Computational thinking

EasyMediumHard
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
Question 29

LogiSwift tracks packages and flags them for different delivery regions using their tracking codes.

This is pseudo-code for an algorithm that routes packages based on the first character of their tracking code.

1 IF (code[0] >= "A" AND code[0] <= "H") THEN
2     SEND "Region East" TO DISPLAY
3 ELSE
4     IF (code[0] >= "I" AND code[0] <= "P") THEN
5         SEND "Region West" TO DISPLAY
6     ELSE
7         IF (code[0] >= "Q" AND code[0] <= "Z") THEN
8             SEND "Region South" TO DISPLAY
9         ELSE
10            SEND "Invalid tracking code" TO DISPLAY
11        END IF
12    END IF
13 END IF

Complete the table below to show the output of the algorithm for the given inputs.

Tracking CodeOutput displayed
MD9921X
ZJ3847Y
5B8394A
[3]

Computational thinking Questions

  1. GCSE
  2. /Computer Science
  3. /Computational thinking