Data types

Easy
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
Question 42
Easy

An algorithm is used to parse a smart-home command prefix.

Figure 2

cmd ← ""
p ← 0
WHILE payload[p] ≠ "#" AND p < 5
    cmd ← cmd + payload[p]
    p ← p + 1
ENDWHILE
accepted ← False
IF cmd = "ON" OR cmd = "OFF" OR cmd = "TEMP" THEN
    accepted ← True
ENDIF

State the data type of the variable accepted in the algorithm in Figure 2.

[1]

Data types Questions

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