Structured programming and subroutines (procedures and functions)

EasyMediumHard
123456789101112131415161718192021222324252627282930313233343536373839404142
Question 23
Easy

A subroutine transform is defined in pseudocode below:

SUBROUTINE transform(num)
  val ← num
  count ← 0
  REPEAT
    val ← val - 5
    count ← count + 2
  UNTIL val < 5
  OUTPUT count
ENDSUBROUTINE

State the value that will be output for the subroutine call transform(12)

[1]

Structured programming and subroutines (procedures and functions) Questions

  1. GCSE
  2. /Computer Science
  3. /Structured programming and subroutines (procedures and functions)