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 _____.
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
PHP supports which types of looping techniques ______.
Write Syntax of For loop in PHP.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Differentiate For each and While loop.
Explain the process Do while loop.
Explain working of loops in array.
