Advertisements
Advertisements
Question
Write short notes on Do while Loop.
Short/Brief Note
Advertisements
Solution
- 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
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
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 (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>PHP supports which types of looping techniques ______.
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>Define Looping Structure in PHP.
Define for loop in PHP.
Explain the use of for each loop in PHP.
Write the purpose of Looping Structure in PHP.
Discuss in detail about Foreach loop.
