Pygame Shapes

Pygame Shapes

8th Grade

15 Qs

quiz-placeholder

Similar activities

Cascading Style Sheets

Cascading Style Sheets

8th - 12th Grade

11 Qs

Quiz 1: Programming in Scratch

Quiz 1: Programming in Scratch

8th Grade

10 Qs

Algorithms

Algorithms

7th - 10th Grade

15 Qs

Computer Devices and its Operating System

Computer Devices and its Operating System

4th - 8th Grade

10 Qs

Introduction to Scratch

Introduction to Scratch

6th - 8th Grade

10 Qs

Word Processing Lessons 3 and 4 Review

Word Processing Lessons 3 and 4 Review

KG - University

20 Qs

Лазарус, події

Лазарус, події

8th Grade

12 Qs

Informatika Kelas 5 Bab 2

Informatika Kelas 5 Bab 2

5th Grade - University

19 Qs

Pygame Shapes

Pygame Shapes

Assessment

Quiz

Computers, Education

8th Grade

Medium

Used 10+ times

FREE Resource

AI

Enhance your content in a minute

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

15 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()

DISPLAY = 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

Draw a Rectangle

DISPLAY = pygame.display.set_mode([400,300])

pygame.draw.rect(DISPLAY, color, [30, 30, 60, 60])

pygame.draw.line(DISPLAY, color, [20, 50], [180, 50], 3)

pygame.draw.circle(DISPLAY, color, [300, 300], 200, 3)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Draw a Circle

pygame.draw.arc(DISPLAY, color, [50, 50, 200, 200], 0, pi, 2)

pygame.draw.rect(DISPLAY, color, [30, 30, 60, 60])

pygame.draw.circle(DISPLAY, color, [20, 50], [180, 50], 3)

pygame.draw.circle(DISPLAY, color, (300, 300), 20)

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?