InterviewSolution
Saved Bookmarks
| 1. |
Answer the following:Explain the term looping.give me answers this question a. |
|
Answer» A LOOP is used for executing a block of statements REPEATEDLY until a particular CONDITION is satisfied. For example, when you are displaying number from 1 to 100 you may want set the value of a VARIABLE to 1 and display it 100 times, increasing its value by 1 on each loop iteration. |
|