Python Pygame

Python Pygame

12th Grade

22 Qs

quiz-placeholder

Similar activities

CLASS XI - MYSQL QUIZ

CLASS XI - MYSQL QUIZ

11th - 12th Grade

20 Qs

Python Review KS3

Python Review KS3

9th - 12th Grade

17 Qs

python intro

python intro

4th - 12th Grade

17 Qs

Computer Monitor Exam Review

Computer Monitor Exam Review

9th - 12th Grade

17 Qs

Итоговый Квиз по Pygame и Python Start

Итоговый Квиз по Pygame и Python Start

9th - 12th Grade

21 Qs

Digital Graphics

Digital Graphics

12th Grade

20 Qs

Browsers & Search Engines

Browsers & Search Engines

7th - 12th Grade

20 Qs

SQL Commands Part 1

SQL Commands Part 1

11th - 12th Grade

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?