Advertisements
Advertisements
Question
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”;
}
?>Options
Hello Hello Hello Hello Hello
Hello Hello Hello
Hello
None of the above
MCQ
Advertisements
Solution
None of the above
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
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”;
?>PHP supports which types of looping techniques ______.
Write Syntax of For loop in PHP.
Write Syntax of Do while loop in PHP.
Compare for loop and for each loop.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain the process Do while loop.
Explain concepts of for loop with example.
