CA 1 > 1.2.3 Write algorithms that make use of programming constructs > Flashcards
State:
Correct syntax for a REPEAT statement in pseudocode
REPEAT
{command}
UNTIL {expression}
State:
Correct syntax for a IF statement in pseudocode
IF {expression} THEN
{command}
END IF