Advertisements
Advertisements
Question
The loop exclusively used for arrays is _____.
Options
While
Do While
For
for each
MCQ
Fill in the Blanks
Solution
The loop exclusively used for arrays is for.
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 (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>
Define for loop in PHP.
What is For each loop in PHP?
Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of Do while loop in PHP.
Write the purpose of Looping Structure in PHP.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain concepts of for loop with example.