Ask Question
27 October, 21:24

Once the logical expression at the start of a while loop is false, the statements after the end statement are

executed.

True or False?

+4
Answers (1)
  1. 27 October, 22:53
    0
    True

    Explanation:

    the while loop is used to execute the statement again and again unti the condition is true. Once the condition is False, the program control terminate the while loop and execute the next statement after the while loop.

    for example:

    int i=0;

    while (i<5)

    {

    i++;

    }

    cout<
    one the code execute the while loop run 5 times and in the 6th times the condition become False then program control moves to print statement.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Once the logical expression at the start of a while loop is false, the statements after the end statement are executed. True or False? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers