Advertisements
Advertisements
प्रश्न
Define for loop in PHP.
व्याख्या
उत्तर
For loop is an important functional looping system which is used for iteration logics when the programmer know in advance how many times the loop should run.
Syntax:
for (init counter; test counter; increment counter)
{
code to be executed;
}
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
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”;
}
?>
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>
Define Looping Structure in PHP.
List out Looping Structure in PHP.
Write Syntax of while loop in PHP.
Differentiate For each and While loop.
Differentiate While and Do while loops.
Explain concepts of for loop with example.
Explain working of loops in array.