The type of iteration that repeats instructions a until a condition is met, also called "condition-controlled". Uses WHILE or REPEAT... UNTIL in high-level languages
A statement that starts a condition-controlled loop with the condition at the end in an UNTIL statement, it will run once even if the condition is false
All identifiers should be this, it means they are readable and reflect the values they represent. MAXLIVES, player1_score and get_health are all OK, but m, p1 and h are not
A statement that assigns a value to a variable. The right side of the equals sign can be any expression. These are valid:health ← 100fare ← 5 + 0.5 * milesdiscount ← time < 8 AND band=="Senior"