Advertisements
Advertisements
Question
PHP supports which types of looping techniques ______.
Options
for loop
while loop
foreach loop
all the above
MCQ
Fill in the Blanks
Advertisements
Solution
All the above
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Loops that iterate for fixed number of times is called ______.
What will be displayed in a browser when the following PHP code is executed:
<?php
for (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
Define Looping Structure in PHP.
Write Syntax of For loop in PHP.
Explain the use of for each loop in PHP.
Write the purpose of Looping Structure in PHP.
Differentiate For each and While loop.
Explain Looping Structure in PHP.
Explain concepts of for loop with example.
