Programming constructs Flashcards
(6 cards)
1
Q
Sequence
A
Code is executed line by line, top to bottom
2
Q
Branching/Selection
A
A certain block of code is run if a specific condition is met.
3
Q
Iteration
A
A block of code is executes a certain number of times or while a condirion is met.
4
Q
Examples of selection
A
IF
5
Q
Examples of Iteration
A
FOR, WHILE, UNTIL
6
Q
A