Structured programming and subroutines (procedures and functions)

EasyMediumHard
123456789101112131415161718192021222324252627282930313233343536373839404142
Question 39
Easy

The subroutine below checks whether a password meets a minimum safety length of 8 characters.

SUBROUTINE P(userPassword)
  length ← LEN(userPassword)
  IF length >= 8 THEN
    RETURN true
  ELSE
    RETURN false
  ENDIF
ENDSUBROUTINE

The identifier for this subroutine is P. This is not a good choice.

State a better identifier for this subroutine and explain why you chose it.

[2]

Structured programming and subroutines (procedures and functions) Questions

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