What would be the output of the following program
in Qbasic?
CLS
For i = 5 to 1 STEP-1
For j = 1 To i
PRINT j;
Next j
END
A
B
C
D
Same options
What would be the output of the following program
in Qbasic?
CLS
For i = 5 to 1 STEP-1
For j = 1 To i
PRINT j;
Next j
END
A
B
C
D