_______ is an instruction used in for, including a set of values in a variable.
in
range
if
None of these
What is the output of the following code:s= 0for i in range (1, 6):s= s+iprint i
5
15
10
6
What is Turtle?
Circle
An arrow mark
Dot
Square
Find the output?R= 0for a in range (1,10,2):R= R+ aprint R
25
55
75
The following program code will results:for i in range(10, 1, -2);print i
10 8 6 4 2
10 8 6 4 2 1
10 8 6 4 2 0
-10 -8 -6 -4 -2
Which of following is an iteration instruction?
for
rt ()
Which of the following is the text editor, commonly used for coding HTML or Python?
Gedit
PhET
IDLE
BSD
___________ function will clear/ delete the previous result/ output of the program.
cls()
clrscr()
clear()
clear