What is a Flow Chart?
A Flowchart is a diagram made up of different boxes linked via arrows. It shows the order of instructions needed to complete a task. It is a visual representation of an algorithm.
What is a Sequence?
A Sequence is a linear set of instructions. The order of instructions.
What is a Selection?
Selection is picking an outcome from multiple options depending on a condition. Usually in code this is seen by using IF statements.
What is Iteration?
Iteration is repeating a process that keeps on going until a certain action is performed.