Advertisements
Advertisements
प्रश्न
Loops that iterate for fixed number of times is called ______.
विकल्प
Unbounded loops
Bounded loops
While loops
For loops
MCQ
रिक्त स्थान भरें
उत्तर
Loops that iterate for fixed number of times is called bounded loops.
shaalaa.com
Looping Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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”;
?>
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 Looping Structure in PHP.
Write Syntax of Do while loop in PHP.
Write short notes on Do while Loop.
Explain Looping Structure in PHP.
Explain the process Do while loop.
Explain working of loops in array.