InterviewSolution
Saved Bookmarks
| 1. |
Explain the looping statements with its santan and example programs |
|
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.Explanation:Hope it help you |
|