Loof repeats until a condition
true
Answers
Answered by
1
Answer:
the repeat / until loop is a loop that executes a block of statements repeatedly, until a given condition evaluates to true . The condition will be re-evaluated at the end of each iteration of the loop, allowing code inside the loop to affect the condition in order to terminate it
Similar questions