2.4.1 Using sequence, selection (branching) and iteration within programs and algorithms Flashcards
1
Q
State:
3 constructs used when creating algorithms
A
- Sequence
- Selection (branching)
- Iteration
2
Q
Define:
Sequence
A
Running a list of instructions in a strict order, the main logical structure of algorithms and programs
3
Q
Define:
Selection
A
Making a decision to dictate the flow of a program
4
Q
Define:
Iteration
A
Repeating a set of instructions
5
Q
A