13Easy
0/1

State the data type of the variable thresholdExceeded in the algorithm shown in Figure 1.

Figure 1

1  readings ← [104.2, 98.7, 115.1, 89.3, 121.4]
2  limit ← 110.0
3  thresholdExceeded ← false
4  index ← 0
5  WHILE index < 5 AND thresholdExceeded = false
6      IF readings[index] > limit THEN
7          thresholdExceeded ← true
8      ELSE
9          index ← index + 1
10     ENDIF
11 ENDWHILE
[1]

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