Advertisements
Advertisements
प्रश्न
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
पर्याय
5
4
3
2
MCQ
उत्तर
5
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
Define Looping Structure in PHP.
List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write short notes on Do while Loop.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.