Advertisements
Advertisements
प्रश्न
PHP supports which types of looping techniques ______.
पर्याय
for loop
while loop
foreach loop
all the above
MCQ
रिकाम्या जागा भरा
उत्तर
All the above
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
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;
}
?>
List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Discuss in detail about Foreach loop.
Explain working of loops in array.