Skip to content

Course home

Data types

Data types

Easy
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
Question 19

The subroutine CheckAcceleration is used in a self-driving vehicle's stability control system. The variable lateral_accel represents the lateral acceleration in m/s2\text{m/s}^2m/s2 and can store values such as −2.5-2.5−2.5, 0.00.00.0, or 1.851.851.85.

SUBROUTINE CheckAcceleration(lateral_accel)
  IF lateral_accel < -1.5 OR lateral_accel > 1.5 THEN
    RETURN 'W'
  ELSE
    RETURN 'S'
  ENDIF
ENDSUBROUTINE

State the most appropriate data type for each of these sets of values.

ValuesData type
−2.5,0.0,1.85-2.5, 0.0, 1.85−2.5,0.0,1.85
'W', 'S'
[2]
Markscheme

Data types Questions

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

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

Question bank