NEW
Font size
WorksheetsPong Game Quiz - Part 2
Total questions: 7
Worksheet time: 4mins
What module in python should be imported if you want to draw?
tkinter
turtle
time
random
Select the correct answer to create a screen using python turtle?
sc1 = turtle()
sc1 = turtle.Screen(
sc1 = turtle.Screen()
sc1 = Screen()
What are the two things you need to set the size of the screen?
Length,Height
Width,Height
Length,Volume
Height,Volume
What is the correct way to create a turtle object?
Turtle()
lp = turtle
lp = Turtle()
lp = turtle.Turtle()
When you created the paddle which shape did we use?
Circle
Pentagon
Square
None of the above
For modifying the shape size to convert the square to rectangle?
lp(stretch_wid = 6,stretch_len = 2)
lp.shapesize(stretch_wid = 6,stretch_len = 2)
lp.shapesize(6,stretch_len = 2)
lp.shapesize(stretch_len = 2)
Which in-built function can be used to write on the turtle screen?
read()
write()
penup()
color()
