KnowledgeBoat Logo

Computer Studies

Draw a flowchart and write a program in QBASIC to display the first 10 terms of the series 3, 6, 12, 24, …….

QBASIC: For-Next Statements

8 Likes

Answer

Flowchart

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

QBASIC Program

Cls
Let A = 3
For I = 1 To 10
    Print A;
    A = A * 2
Next I
End

Output

3  6  12  24  48  96  192  384  768  1536

Answered By

4 Likes


Related Questions