Differentiate between 'if' and 'repeat 10' blocks?
Answers
Answered by
0
Answer:
fjkhffdfgh
Explanation:
fjkhffdfgh
Answered by
0
Differentiate between 'if' and 'repeat 10' blocks
Explanation:
repeat 10
- Repeat refers to loop.
- The instructions written inside the repeat() block will iterate over a given amount of times.
if
- It is conditional statement.
- An if statement evaluates an expression for true or false, and if it is true then run the statements inside the block.
REPEAT...UNTIL
- It refers to the loop that repetitively executes a set of the statement until a condition is true.
Similar questions