InterviewSolution
Saved Bookmarks
| 1. |
What is looping statements ? |
| Answer» While programming, you may want to repeat the execution of a certain set of statements multiple times. This can be done using loops. A loop is used to repeat the execution of a group of statements many times. Statements that enable us to create loops are known as looping statements. | |