Advertisements
Advertisements
प्रश्न
Write short notes on Do while Loop.
टीपा लिहा
Advertisements
उत्तर
- Do while loop always run the statement inside of the loop block at the first time execution.
- Then it is checking the condition whether true or false.
- It executes the loop if the specified condition is true.

Do While loop Structure and Flow Chart
Syntax:
do {
code to be executed;
} while (condition is true);shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
Loops that iterate for fixed number of times is called ______.
Define for loop in PHP.
Compare for loop and for each loop.
Write the features Looping Structure.
Differentiate For each and While loop.
Explain Looping Structure in PHP.
Explain the process Do while loop.
Explain concepts of for loop with example.
Explain working of loops in array.
