Computer - Ch-7 Answer Key (VIII) 2024
Computer - Ch-7 Answer Key (VIII) 2024
School
9th Avenue, I.P. Extension, Patparganj, Delhi – 110092
Session: 2024-2025
Ans.
5. Define the use of while statement with the help of example and flowchart.
Ans. The while statement executes a set of statements repeatedly, until the logical
expression evaluates to true. When the condition becomes false, the control comes out
of the loop. The syntax of while statement is given below.
Syntax:
while (test expression):
Statements