differentiate between for....next loop and do until loop with example (5 mark question)
Answers
Answered by
0
Answer:
A "Do While" loop statement runs while a logical expression is true. This means that as long as your expression stays true, your program will keep on running. Once the expression is false, your program stops running. A "Do Until" loop statement runs until a logical statement is true
Similar questions