Computer Studies

Correct the errors in the following flowchart and write the program:

Correct the mistakes in the given flowchart. Chapter 9 Question 1 Class 7 ICSE Understanding Computer Studies.

QBASIC: For-Next Statements

6 Likes

Answer

Flowchart

Corrected flowchart for Chapter 9 Question 1 Class 7 ICSE Understanding Computer Studies.

QBASIC Program

Cls
Input "Enter a number"; N
For I = 1 To N
    M = I + I
    Print M
Next I
End

Output

Enter a number? 5
2
4
6
8
10

Answered By

6 Likes


Related Questions