Ask Question
21 December, 23:27

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

executed.

True or False?

+5
Answers (1)
  1. 22 December, 02:04
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers