Ask Question
29 March, 00:36

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

True False

+2
Answers (1)
  1. 29 March, 03:00
    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 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