true or false
the while loop is executed at least once
Answers
Answered by
4
Answer:
With a do while loop the condition is not evaluated until the end of the loop. Because of that a do while loop will always execute at least once. A for-loop always makes sure the condition is true before running the program.1
Similar questions