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