What is the difference between repeat until loop and while loop?

      

Differentiate between repeat until loop and while loop.

  

Answers


Maurice
The REPEAT....UNTIL loop executes statements at least once even if the initial condition is false and checks the condition at the end but for WHILE loop control structure, the condition is tested at the beginning of the program execution and will run at all if the initial condition is false.
maurice.mutuku answered the question on April 21, 2018 at 12:22


Next: What is the difference between the FOR loop and WHILE loop?
Previous: What are the characteristics of a FOR loop?

View More Computer Studies Questions and Answers | Return to Questions Index


Exams With Marking Schemes

Related Questions