Advertisements
Advertisements
Question
The loop exclusively used for arrays is _____.
Options
While
Do While
For
for each
MCQ
Fill in the Blanks
Advertisements
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
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
What is For each loop in PHP?
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Write the purpose of Looping Structure in PHP.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.
Explain the process Do while loop.
