Advertisements
Advertisements
प्रश्न
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”;
}
?>पर्याय
Hello Hello Hello Hello Hello
Hello Hello Hello
Hello
None of the above
MCQ
Advertisements
उत्तर
None of the above
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?
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 each loop in PHP.
Explain the use of for each loop in PHP.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.
Explain working of loops in array.
