15Easy
0/1

Select one option which shows the data type of the variable mode in the algorithm shown in Figure 1.

Figure 1

1      mode ← USERINPUT
2      IF mode = 'focus' THEN
3          brightness ← 100
4      ELSE IF mode = 'relax' THEN
5          brightness ← 40
6      ELSE IF mode = 'night' THEN
7          brightness ← 10
8      ELSE
9          OUTPUT 'invalid mode'
10     ENDIF
11     FOR count ← 1 TO 3
12         IF brightness > 50 THEN
13             SET_LED('white')
14         ELSE
15             SET_LED('warm')
16         ENDIF
17     ENDFOR

Integer

String

Boolean

Real

Data types Questions

Practise AQA GCSE Computer Science Data types with exam-style questions for GCSE Computer Science. 50 questions, matched to the AQA GCSE Computer Science (8525) specification and written in Paper 1 and Paper 2 style. Every question includes a full worked solution and mark scheme, so you can see where marks are awarded rather than just whether you got the answer right.

PreviousNext

Data types Questions

  1. GCSE
  2. /Computer Science
  3. /Data types