Saved Bookmarks
| 1. |
In situations where we need to execute the body of the loop before testing the condition, we must use which loop forDo whileWhileNested for loop |
|
Answer» ONG>Answer: In while loop, a CONDITION is EVALUATED before processing a body of the loop. If a condition is TRUE then and only then the body of a loop is executed therefore while loop is the correct answer. |
|