Which of following is an iteration instruction?
for
if
rt ()
range
What is the purpose of 'from turtle import *'?
No specific purpose
For constructing geometrical shapes
For turtle instructions to work in python
For supporting python code
Program to find the product of all the numbers from 1 to 5:
p= 1for i in range(1, 6):p= p× iprint p
p= 0for i in range(1, 5):p= p× iprint i
For i in range(0, 6):p= p× iprint p
p= 1for i in range(1, 5):p = p× iprint p
Find the output?R= 0for a in range (1,10,2):R= R+ aprint R
15
25
55
75
Find the output of the code snippet?for i in range (5, 0, -1):print i
1 2 3 4 5
-1 -2 -3 -4 -5
5 4 3 2 1
5 4 3 2 1 0
IDLE stands for
Integrated Development Environment
Integrated Development Entity
Integrated Development Education
Integrated Development Employment
_______ is an instruction used in for, including a set of values in a variable.
in
None of these
What is Turtle?
Circle
An arrow mark
Dot
Square