Answer:
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