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
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>What is For each loop in PHP?
Write Syntax of For loop in PHP.
Write the features Looping Structure.
Write short notes on Do while Loop.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain the process Do while loop.
