Computer Science, asked by nasirmohiuddin, 3 months ago

what is difference between the do while statement and the repeat until statement​

Answers

Answered by Anonymous
5

Answer:

UNTIL the loop statements are executed before the condition is tested while in WHILE .. DO loops the condition is tested first before the loop statements are executed. ... UNTIL the loop is executed when the condition is FALSE while in WHILE .. DO loops the loop statements are executed when the condition is TRUE.

Similar questions