Python Term 2 - Quiz 2

Python Term 2 - Quiz 2

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Y8 Computing HTML

Y8 Computing HTML

8th Grade

14 Qs

Bài thực hành 2 Viết chương trình để tính toán

Bài thực hành 2 Viết chương trình để tính toán

1st - 12th Grade

12 Qs

HTML - Tags, elements, tables and images

HTML - Tags, elements, tables and images

7th - 9th Grade

12 Qs

Computer Hardware 2

Computer Hardware 2

7th Grade

12 Qs

ch-2 window movie maker

ch-2 window movie maker

8th Grade

10 Qs

Year 7 HTML

Year 7 HTML

7th - 9th Grade

11 Qs

Extreme Sports Homework Quiz 2

Extreme Sports Homework Quiz 2

7th Grade

11 Qs

Computer parts 6

Computer parts 6

5th - 6th Grade

11 Qs

Python Term 2 - Quiz 2

Python Term 2 - Quiz 2

Assessment

Quiz

Computers

6th - 8th Grade

Practice Problem

Hard

Created by

Tomasz Michalski

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

With what symbol can we access attributes and methods of an object?

.

-

*

:

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In what way can we display an image on a screen by using the pygame module?

display.draw(image, (20, 20))

display.blit(image, (20, 20))

image.draw(display, (20, 20))

display.display(image, (20, 20))

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to set the size of the display?

pygame.display.set_mode()

pygame.display.set_screen()

pygame.display.set_size()

None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to close a pygame program?

pygame.quit()

pygame.exit()

pygame.terminate()

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which class in the pygame module is used to create new game objects?

Sprite

Image

Object

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A group of similar objects that allows to operate on them as a whole

An image object

Such thing does not exist in pygame module.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Is this program written correctly?

Yes

No

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which code fragment will create a Car class instance and passes value 2011 into the constructor?

bmwCar(2011)

tesla = Car.create(2011

mustang = Auto(2011)

porsche = Auto.create.2011

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way of defining a constructor?

class init(self):

def __init__(self):

clas __init__:

def init(self):