Instructions
1. Define what LOOP is in programming language.
2. Give three types of Loop in programming language.
3. Explain the differences between Condition Loops, Counted
Loops and Endless Loops.
4. Which loop statement that repeats a specific number of
times?
5. In WHILE Loop, what happen if the condition is false from the
start?
6. What is the difference between WHILE Loop and DO-WHILE Loop?
Draw flow charts to show the difference between WHILE Loop and
DO-WHILE Loop.
7. Give the output for these loop statements.
a. FOR (x = 1, x < 10, x++) PRINT x+2
b. FOR (x = 5, x < 20, x++) PRINT x+x
c. FOR (x = 10, x < 20, x++) PRINT x
d. FOR (x = 20, x > 10, x--) PRINT x +2