5 questions0m 0s
Learn the skill
IF checks a condition. In this pseudocode, IF points >= 5 THEN SHOW ready ELSE SHOW practice END runs exactly one branch. The symbol >= means greater than or equal to. SHOW only displays text.
Worked example
With points = 5, the condition points >= 5 is true, so ready is displayed. With points = 4 it is false, so practice is displayed. The equality case belongs in the true branch.