Which instruction is used to move the turtle without the line appearing?
Penup( )
Pendown ( )
For
None of these
The instruction to repeat a program segment is _________.
if
import
for
write ( )
The ______ widget is used to provide various commands to a user.
Menu
Message
Form
Label
Instead of ‘for’ command we can use ______ command be repeat a program segment.
while
Character type data is called ______.
Variable
String
Character
Numeric
In Python language,which instruction is used for including a set of values in a variable?
Write
Clear
Range
The python instruction to accept a name to a variable through the keyboard is _______.
name = input ( “Enter name”)
name = raw _ input (“Enter name”)
name = “Enter name”
input (“Enter your name”) to name
The application program used to develop python programs in WYSIWYG format is ________.
Writer
Calc
Wxglade
Inkscape
_____ option can be used to create rows and columns in the frame window of wxglade.
Properties
Matrix
Sizer
Row_ column
The command to define a function ‘sum’ to add two numbers is ______.
def sum ( a, b ):
sum ( a, b):
find _ sum ( a, b ):
sum = a + b :