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 _____.
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>Define Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of Do while loop in PHP.
Explain the process Do while loop.
Explain working of loops in array.
