_______ lets to repeatedly execute a set of program statements?
FOR NEXT
FOR...NEXT
FOR...STEP
FOR...NEXT...PRINT
From the following program, MODE is for_______ 10 MODE 1. 20 CIRCLE (160,100), 60, 30 END.
To start
Key word
Statement
To prepare the screen for graphics program.
If you want to change a program, which command is using?
Edit
CLS
Stop
None of these
In FOR...NEXT, the key word_____ is used to specify the increment .
FOR
TO
Step
NEXT
_____ Keyword is used to draw a line segment.
LINE
PLOT
LET
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.
Write the output of the following code:
20 FOR I=1 to 15 step 5
30 print I
40 NEXT I
1, 6,11.
1, 5, 10, 15.
1, 6, 15.
1,5,11,15.
What is the output of the following program: 10 CLS ,20 FOR I=1 to 25, 30 PRINT I, 40 NEXT I.
1 and 25.
Natural numbers up to 25.
Country 25 numbers
________ operators are used to combine several conditions together into one condition.
Logical operator
Relational operator
Arithmetical operator
Compound