Answer:
False
Explanation:
A while-loop continues to execute the body of the set of instructions until the condition statement remains true and exits the loop when the condition becomes false.
In while loop is followed by a condition called test expression in '()' braces. Then follows the body of the loop which is inside the '{}' braces while the condition remains true.