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

Explain the process Do while loop. - Computer Applications

Advertisements
Advertisements

प्रश्न

Explain the process Do while loop.

टीपा लिहा

उत्तर

  1. Do while loop always run the statement inside of the loop block at the first time execution.
  2. 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);

    Example-

    <?php
    $Student_count = 10;
    $student_number= 1;
    do
    {
    echo “The student number is: $student_num- ber<br>”;
    $student_number++;
    }
    while($student_number<= $Student_count);
    ?>

    Do While loop Structure and Flow Chart
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 3. | पृष्ठ ११८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×