Pseudocode can be used to plan out programs. Planning a program that asks people what the best subject they take is, would look like this in pseudocode: REPEAT OUTPUT 'What is the best subject you ...
OUTPUT 'How old are you?' INPUT user inputs their age STORE the user's input in the age variable IF age > 17 THEN OUTPUT 'You are old enough to drive a car!' ELSE IF age < 17 THEN OUTPUT 'You are too ...