Computer Science, asked by aryanv88051, 1 month ago

At which value do while loop terminates

Answers

Answered by rochanaratakonda
3

Answer:

For example, the Pascal language has a repeat until loop, which continues to run until the control expression is true (and then terminates) — whereas a “while” loop runs while the control expression is true (and terminates once the expression becomes false).

Similar questions