In FOR...NEXT, the key word_____ is used to specify the increment .
FOR
TO
Step
NEXT
Find the output? After execution what is the value of sum?
10 CLS
20 sum=0
30 FOR I=1 to 5
40 SUM=SUM+I
50 NEXT I
60 PRINT SUM
80 END.
15
10.
5.
1.
______command is used to take the program (is already saved program) in to the terminal.
Run
Execute
Load
Save
_____ operators are used for comparing values.
Arithmetical
Relational
Losical
None of these
An array elements are________
Homogeneous
Heterogeneous
Different
Predict the output of the following code:
10 FOR I=5 to 10 step 5
20 print I
30 NEXT I
5,10, 15, 20, 25.
5, 10.
5, 10, 20.
DIM stands for __________
Dimension
Statement
Array
_______ lets to repeatedly execute a set of program statements?
FOR NEXT
FOR...NEXT
FOR...STEP
FOR...NEXT...PRINT
_____ Keyword is used to draw a line segment.
LINE
PLOT
CLS
LET