Advertisements
Advertisements
Question
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.
Options
12 squared 141
12 squared=141
“12 squared=141”
Execution error
MCQ
Advertisements
Solution
Execution error
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
Loops that iterate for fixed number of times is called ______.
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 ______.
Define Looping Structure in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Differentiate While and Do while loops.
Explain the process Do while loop.
Explain working of loops in array.
