a) the deafult step value is
b)how many times will the loop executed
X=0
DO WHILE X>10
PRINT "*"
LOOP
raghavb471:
QB64
Answers
Answered by
0
How many times will the following loop be executed ?
X = 0
DO WHILE X > 10
PRINT “*”
LOOP
None of these is the answer . and
The PRINT statement is used to display numbers, messages or values of variables on the output screen.
X = 0
DO WHILE X > 10
PRINT “*”
LOOP
None of these is the answer . and
The PRINT statement is used to display numbers, messages or values of variables on the output screen.
Similar questions