मराठी
तामिळनाडू बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान इयत्ता १२

Explain Looping Structure in PHP. - Computer Applications

Advertisements
Advertisements

प्रश्न

Explain Looping Structure in PHP.

टीपा लिहा

उत्तर

  1. Looping Structures are useful for writing iteration logics.
  2. It is the most important feature of many programming languages, including PHP.
  3. They are implemented using the following categories:
    1. For Loop
    2. For each Loop
    3. while Loop
    4. Do while Loop
  • For Loop:
    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;
    }
  • Foreach Loop:
    foreach loop is exclusively available in PHP. It works only with arrays. The loop iteration deepens on each KEY Value pair in the Array. For each, loop iteration the value of the current array element is assigned to $value variable and the array pointer is shifted by one, until it reaches the end of the array element.
    Syntax:
    for each ($array as $value)
    {
    code to be executed;
    }
  • While Loop:
    While loop is an important feature which is used for simple iteration logics. It is checking the condition whether true or false. It executes the loop if a specified condition is true.
    Syntax:
    while (condition is true)
    {
    code to be executed;
    }
  • Do While Loop:
    Do while loop always run the statement inside of the loop block at the first time execution. Then it is checking the condition whether true or false. It executes the loop, if the specified condition is true.
    Syntax:
    do
    {
    code to be executed;
    }
    while (condition is true);
shaalaa.com
Looping Structure
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 7: Looping Structure - Evaluation - PART – IV [पृष्ठ ११८]

APPEARS IN

सामाचीर कलवी Computer Applications [English] Class 12 TN Board
पाठ 7 Looping Structure
Evaluation - PART – IV | Q 1. | पृष्ठ ११८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×