What are the three programming constructs?
What is the sequence construct?
Sequence constructs tells the processor which statement is to be executed next, this is usually two or more statements following one after another.
What is an assignment statement?
A value is assigned to a variable
What is the selection statement?
Selection statement are used to select which statement will be executed next, depending on some condition, conditions are formulated using relational operators.
What is a repetition construct?
What are the two types of iteration?
* Definite Iteration
What is indefinite iteration?
Where the iteration continues until some specified condition is met, includes WHILE ENDWHILE REPEAT UNTIL
What is a definite iteration?
Number of times the loop is to be executed is decided in advance.