Advertisements
Advertisements
Question
Loops that iterate for fixed number of times is called ______.
Options
Unbounded loops
Bounded loops
While loops
For loops
MCQ
Fill in the Blanks
Advertisements
Solution
Loops that iterate for fixed number of times is called bounded loops.
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
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”;
?>Define for loop in PHP.
Write Syntax of Do while loop in PHP.
Explain the use of for each loop in PHP.
Write the purpose of Looping Structure in PHP.
Differentiate While and Do while loops.
Explain concepts of for loop with example.
Explain working of loops in array.
