Give the output of the
1. 10
10 LET K = 1
20 WHILE K < 5
30 PRINT K * 2
40 K = K + 2
50 WEND
60 END
Answers
Answered by
1
Answer:
Hope this is right
Explanation:
12 because:
K=10
10<5=False, so the loop will not run.
then,K=10+2
K=12.
your program will not run because there isn't any print at last.
LET K=10
(WHILE K < 5
30 PRINT K * 2)
K = K + 2
END
Dear please mark me branliest .
Similar questions