Write Short Notes on the following
(1) Repeat Until Block
Answers
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
repeat
until
steps
Having a sprite stick to the mouse until the mouse is not down
Explanation:
if you like my answer then please mark me as brain list and thanks me
Question :
Short note about Repeat Until Block .
Answer :
Repeat Until () block :-
The 'Repeat Until () block' is a 'Control Block and a C block'. Blocks kept inside this block will loop until the specified 'Boolean statement' is true, in which case the 'code below the block' (if any) will be executed. This loop is of a similar nature to a 'while loop' in some other 'programming languages'.
To know more :
how is the repeat block different from the repeat until block ????
https/brainly.in/question/7173304
What us the difference between repeat and repeat until block?
https/brainly.in/question/13842617