wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Pong Game Quiz - Part 2

Total questions: 7

Worksheet time: 4mins

Name
Class
Date
1.

What module in python should be imported if you want to draw?

a)

tkinter

b)

turtle

c)

time

d)

random

2.

Select the correct answer to create a screen using python turtle?

a)

sc1 = turtle()

b)

sc1 = turtle.Screen(

c)

sc1 = turtle.Screen()

d)

sc1 = Screen()

3.

What are the two things you need to set the size of the screen?

a)

Length,Height

b)

Width,Height

c)

Length,Volume

d)

Height,Volume

4.

What is the correct way to create a turtle object?

a)

Turtle()

b)

lp = turtle

c)

lp = Turtle()

d)

lp = turtle.Turtle()

5.

When you created the paddle which shape did we use?

a)

Circle

b)

Pentagon

c)

Square

d)

None of the above

6.

For modifying the shape size to convert the square to rectangle?

a)

lp(stretch_wid = 6,stretch_len = 2)

b)

lp.shapesize(stretch_wid = 6,stretch_len = 2)

c)

lp.shapesize(6,stretch_len = 2)

d)

lp.shapesize(stretch_len = 2)

7.

Which in-built function can be used to write on the turtle screen?

a)

read()

b)

write()

c)

penup()

d)

color()