What are the naming conventions for identifiers?
What is a sequence?
Executing one statement after another
What is iteration?
Repeating a section of code while a Boolean expression is true (while) or a fixed number of times (for)
What is branching?
Branching to a different place in the program according to the value of a Boolean expression (if/elseif/else, switch/case)