Advertisements
Advertisements
प्रश्न
Write short notes on Do while Loop.
टिप्पणी लिखिए
उत्तर
- 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
संबंधित प्रश्न
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
What will be displayed in a browser when the following PHP code is executed;
<?php
for ($counter = 10; $counter < 10;
$counter = $counter + 5){
echo “Hello”;
}
?>
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.
What is For each loop in PHP?
Differentiate For each and While loop.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.
Explain the process Do while loop.