What are the 3 programming constructs?
Sequence, Selection, Iteration
What is Sequence?
• Do one statement after the other in order
What is Selection?
• Do a set of statements based on a condition, allow your code to make choices
What is Iteration?
• Do a set of statements again and again
What is a Count Controlled loop?
• Do a set of statements again and again a known (fixed) number of times
What is a Condition Controlled loop?
• Do a set of statements again and again until a given condition is met
What is a Local variable?
What is a Global variable?
What features does an IDE supply?