Computer Science, asked by ksharma1975hsrpdg1lw, 10 months ago

What is the difference between the repeat and repeat until block

Answers

Answered by pbhor4
4

Answer:

Repeat

These block are used to repeat a script writter inside it a given number of times, it save a lot of time and space

Repeat until

It repeat the set of block written inside it until the condition evaluates to three

Answered by pritamgorai1998
2

Answer: The repeat and repeat until block boths are different.

Explanation: The program repeats the blocks inside the loop.means if the block is true,the program skips the blocks inside the loop and moves on to the next statement in the program. But repeat until block is a loop.that means if the program false then again repeat the blocks inside the loop.

Similar questions