Answer the following questions
The following program is supposed to print the first 10 multiples of 5 What should be
the value of the updation shown by a blank?
C-5
WHILE C<=50
PRINT C
C=C+....................
WEND
Answers
Answered by
0
Answer:
C = C+5
Explanation:
As we are finding the multiples of 5 that's why. You know that in a table of 5
5 * 1 =5
5*2 = 10
5+5 = 10
Similar questions