Computer Science, asked by Bkanandish, 11 months ago

_______ statement will be executed repeatedly as long as the expression remains true.​

Answers

Answered by smartbrainz
4

Do While statement will be executed repeatedly as long as the expression remains true.

  • In programming languages, a loop is a set of instructions that are executed repeatedly till a specified condition is met.
  • Loops are of two types Entry-controlled loops and Exit-controlled loop.
  • In entry-controlled loops, test condition is specified before entering into the body of the loop. In exit-controlled loops test condition is evaluated at the end of the loop body.
  • Do While loops are exit-controlled loops wherein the body is executed at least once. At the end of the body, the test condition is evaluated, in case it is true then the loop will execute again. If test condition evaluates to false, the control falls out of the loop.

To know more about type of loops, visit:

https://brainly.in/question/7885518

Answered by 2386
3

Answer:Do While statement will be executed repeatedly as long as the expression remains true.

hope this helps!

Similar questions