Advertisements
Advertisements
Question
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”;
?>
Options
Welcome to Tamilnadu
Counter is: 20
Welcome to Tamilnadu Counter is: 22
Welcome to Tamilnadu Welcome to Tamilnadu Counter is: 22
MCQ
Solution
Counter is: 20
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What will be displayed in a browser when the following PHP code is executed;
<?php
for ($counter = 10; $counter < 10;
$counter = $counter + 5){
echo “Hello”;
}
?>
PHP supports which types of looping techniques ______.
Define for loop in PHP.
What is For each loop in PHP?
Write Syntax of For each loop in PHP.
Write Syntax of Do while loop in PHP.
Write the features Looping Structure.
Write the purpose of Looping Structure in PHP.
Write short notes on Do while Loop.
Explain concepts of for loop with example.