Answer:
The given statement is "True".
Step-by-step explanation:
The while loop is iterating the condition when the condition is true if the condition which is given inside the while loop parenthesis is false it will not iterating the loop that's why sometimes while is also known as an Entry control loop. The while loop has tested the condition for a true or false value that's why the first statement is true.
In the second statement, the statement inside the while loop is executed until the condition of while loop is true when the condition id False it stops the execution of a while loop that's why the second statement is true.