Data types

Easy
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
Question 29
Easy

An algorithm is used to parse telemetry data from an oceanographic research buoy.

Figure 2

reading ← ""
k ← 0
WHILE raw_payload[k] ≠ "K" AND k < 8
    reading ← reading + raw_payload[k]
    k ← k + 1
ENDWHILE
is_valid ← False
IF reading ≠ "" AND k < 8 THEN
    is_valid ← True
ENDIF

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

[1]

Data types Questions

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