Computer Science, asked by priyanshuchakr71, 7 months ago

2. Draw a flowchart and write a program in QBASIC to display the sum of the first 10 terms
of the series:
(a) S = 5 + 8 + 11 +
(b) S = 99 + 90 + 81 +
(c) S = 1 + 2 + 4 + 8 +​

Answers

Answered by rupanjana77
1

Answer:

HEY BRAINLY USER, YOUR PERFECT ANSWER IS HERE!

Explanation:

A) CLS

    C = 1 : A = 5

    WHILE C<=10

    PRINT A

    A = A + 3

    C = C + 1

    WEND

B) CLS

    C = 1 : A = 99

    WHILE C<=10

    PRINT A

    A = A - 9

    C = C+1

    WEND

Similar questions