Computer Science, asked by lalsinghkirad8839867, 2 months ago

0.7 Define EXIT DO statement, write the syntax also.​

Answers

Answered by arfaatshaikh02
0

Answer:

<html>css is the form you for stan

Answered by Anonymous
11

answer

EXIT DO statement

An Exit Do Statement is used when we want to exit the Do Loops based on certain criteria. It can be used within both Do… While and Do... Until Loops. When Exit Do is executed, the control jumps to the next statement immediately after the Do Loop.

syntax

The syntax of the do statement is: do statement while (expression); The statement is executed repeatedly as long as the value of expression remains non-zero. The expression is evaluated after each iteration, so the loop will execute statement at least once.

Similar questions