Advertisements
Advertisements
प्रश्न
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.
पर्याय
12 squared 141
12 squared=141
“12 squared=141”
Execution error
MCQ
उत्तर
Execution error
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
Define Looping Structure in PHP.
Define for loop in PHP.
List out Looping Structure in PHP.
Write Syntax of Do while loop in PHP.
Differentiate For each and While loop.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.