Advertisements
Advertisements
प्रश्न
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>पर्याय
**********
*********
***********
Infinite loop
MCQ
Advertisements
उत्तर
*********
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of Do while loop in PHP.
Explain the use of for each loop in PHP.
Write short notes on Do while Loop.
Explain Looping Structure in PHP.
Explain the process Do while loop.
Explain working of loops in array.
