What will be the output of the following program?
age = 10
DO
PRINT age
age = age + 1
LOOP WHILE age <10
A 9
B 11
C 10
D 12
how!!!
What will be the output of the following program?
age = 10
DO
PRINT age
age = age + 1
LOOP WHILE age <10
A 9
B 11
C 10
D 12