Computer Science, asked by NinjaimmortalGAMER, 4 months ago

Write Short Notes on the following

(1) Repeat Until Block​

Attachments:

Answers

Answered by durairaj7728
0

Answer:

The Repeat Until () block is a Control block and a C block. Blocks held inside this block will loop until the specified boolean statement is true, in which case the code beneath the block (if any) will execute. This loop is in similar nature to a while loop in some other programming languages.

Example Uses

As this block loops pieces of code until a condition is true, the block is the best way to run code until a desired condition has been reached. Some common uses:

Moving a sprite until its X or Y position is at a certain amount

Similar questions