Answer:
True
Step-by-step explanation:
the while loop is used to execute the statement again and again unti the condition is true. Once the condition is False, the program control terminate the while loop and execute the next statement after the while loop.
for example:
int i=0;
while(i<5)
{
i++;
}
cout<<i<<endl;
one the code execute the while loop run 5 times and in the 6th times the condition become False then program control moves to print statement.