Ask Question

A while loop's body can contain multiple statements, as long as they are enclosed in braces

True False

+5
Answers (1)
  1. 25 June, 06:17
    0
    True

    Explanation:

    while loop is used to execute the statement again and again until the condition is true. if condition False program terminate the while loop and start execute the statement outside the loop.

    syntax:

    initialize;

    while (condition)

    {

    statement 1;

    statement 2;

    to

    statement n;

    }

    we can write multiple statement within the braces. their is no limit to write the statement within the body of the while loop.

    while terminate only when condition false
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “A while loop's body can contain multiple statements, as long as they are enclosed in braces True False ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers