Ask Question
6 October, 01:21

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

True False

+1
Answers (1)
  1. 6 October, 05:21
    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?
Get 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 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