What is the difference between the repeat and repeat until block
Answers
Answered by
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
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