KnowledgeBoat Logo

Computer Studies

Draw a flowchart and write a program in QBASIC to display the first 10 terms of the series 7, 14, 21, …….

QBASIC: For-Next Statements

4 Likes

Answer

Flowchart

Draw a flowchart and write a program in QBASIC to display the first 10 terms of the series: 7, 14, 21. Class 7 ICSE Understanding Computer Studies

QBASIC Program

Cls
Let A = 7
For I = 1 To 10
    Print A;
    A = A + 7
Next I
End

Output

7  14  21  28  35  42  49  56  63  70

Answered By

1 Like


Related Questions