Computer Science, asked by rawal144, 9 months ago

Find the output of:
DECLARE SUB Series ( )
CALL Series
END

SUB Series ( )
N=2
C=1
WHILE C<=10
PRINT N
N=N+C
C=C+1
WEND
END SUB

Answers

Answered by AnindaBasu
0

Answer:

2

3

5

8

12

17

23

30

38

47

58

The output are as follows

Similar questions