Algorithm Key Terms Flashcards
To Be Able To Say What Different Types Of Algorithm Key Terms Mean (4 cards)
1
Q
What is a Flow Chart?
A
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.
2
Q
What is a Sequence?
A
A Sequence is a linear set of instructions. The order of instructions.
3
Q
What is a Selection?
A
Selection is picking an outcome from multiple options depending on a condition. Usually in code this is seen by using IF statements.
4
Q
What is Iteration?
A
Iteration is repeating a process that keeps on going until a certain action is performed.