Skip to content

Course home

Representing algorithms

Representing algorithms

EasyMediumHard
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
Question 28

In an automated environmental monitoring system, the carbon dioxide level, CCC (in ppm), is processed using the algorithm below:

1      C ← USERINPUT
2      IF NOT(C <= 12) AND C MOD 5 = 0 THEN
3          OUTPUT "Critical"
4      ELSEIF C * 3 < 40 OR C MOD 4 = 2 THEN
5          OUTPUT "Warning"
6      ELSEIF NOT(C < 10 OR C > 20) THEN
7          OUTPUT "Normal"
8      ELSE
9          OUTPUT "Standby"
10     ENDIF

If the user input for C C\,C is 14, what will be the output?

A

Critical

B

Warning

C

Normal

D

Standby

Markscheme

Representing algorithms Questions

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

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

Question bank