Python Pygame

Python Pygame

12th Grade

22 Qs

quiz-placeholder

Similar activities

VGD HAPPY QUIZ 1

VGD HAPPY QUIZ 1

11th - 12th Grade

20 Qs

python intro

python intro

4th - 12th Grade

17 Qs

App Lab

App Lab

7th - 12th Grade

20 Qs

pyplot in python class 12 (14/08/20)

pyplot in python class 12 (14/08/20)

12th Grade

20 Qs

JavaScript Quiz 2

JavaScript Quiz 2

9th - 12th Grade

20 Qs

UH Pygame - Vol. 1

UH Pygame - Vol. 1

9th - 12th Grade

20 Qs

Pygame Тест

Pygame Тест

12th Grade

26 Qs

JavaScript Game Development Newton

JavaScript Game Development Newton

9th Grade - University

20 Qs

Python Pygame

Python Pygame

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Динара Тлеккабылова

Used 50+ times

FREE Resource

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do I import the pygame library?

import pygame

pygame.init()

surface = pygame.display.set_mode((400,300))

pygame.display.flip()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do I initialize the pygame?

import pygame

pygame.init()

surface = pygame.display.set_mode((400,300))

pygame.display.flip()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do I initialize the surface?

import pygame

pygame.init()

surface = pygame.display.set_mode((400,300))

pygame.display.flip()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do I update the screen?

import pygame

pygame.init()

surface = pygame.display.set_mode((400,300))

pygame.display.flip()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does display.flip() do?

will update the contents of the entire display

allows to update a portion of the screen, instead of the entire area of the screen

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does display.update() do?

will update the contents of the entire display

allows to update a portion of the screen, instead of the entire area of the screen

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can I check for an event if a user has pushed any event in the queue?

run = False

for event in pygame.event.get():

if event.type == pygame.QUIT:

running = True

run = True

for event in pygame.event.get():

if event.type == pygame.QUIT:

 running = False

for event in pygame.event.pos():

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?