InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of While…wend Loop? |
|
Answer» The While loop keeps REPEATING an ACTION until an associated condition BECOMES false. This is useful where the programmer does not know in ADVANCE how MANY times the loop will be executed. The While loop keeps repeating an action until an associated condition becomes false. This is useful where the programmer does not know in advance how many times the loop will be executed. |
|