Programming Concepts Flashcards
1
Q
Sequence
A
Instructions will always execute in order which they are written
2
Q
Selection
A
One path through the code is chosen where multiple possible paths exist
Using if, else code
3
Q
Indefinite iteration
A
Where loop will be repeated if the looping variable is met or not met depending on what is said
4
Q
Iteration
A
Looping
5
Q
Definite iteration
A
We know how many times the loop will run
6
Q
Nesting
A
Involves placing of one program structure inside another