Day 3 Pygame - 25th June

Day 3 Pygame - 25th June

Professional Development

5 Qs

quiz-placeholder

Similar activities

02-ประเภทของเกมและลักษณะเฉพาะของเกม

02-ประเภทของเกมและลักษณะเฉพาะของเกม

Professional Development

10 Qs

Kuis Minecraft

Kuis Minecraft

6th Grade - Professional Development

10 Qs

Past Technology

Past Technology

KG - Professional Development

10 Qs

Python Quiz

Python Quiz

5th Grade - Professional Development

5 Qs

Additional game features

Additional game features

Professional Development

10 Qs

Godot Game Development Quiz

Godot Game Development Quiz

Professional Development

8 Qs

Popular Video Games (2019)

Popular Video Games (2019)

KG - Professional Development

10 Qs

Komputery

Komputery

1st Grade - Professional Development

7 Qs

Day 3 Pygame - 25th June

Day 3 Pygame - 25th June

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Coding Department

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does pygame.time.Clock() do in Pygame?

Draws shapes

Tracks key events

Creates a clock object to manage time and speed

Sets the screen background

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which line limits the game loop to 60 frames per second?

pygame.init()

clock = pygame.time.Clock()

clock.tick(60)

pygame.quit()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would happen if clock.tick(FPS) is removed from the loop?

Game will freeze

Game will run very slowly

Game will run too fast and inconsistently

Game will not update the display

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why is a consistent FPS important in a game?

To make the screen larger

For smooth and consistent movement

To pause the game

To load images faster

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does FPS stand for?

Frames Per Step

Fast Processing Speed

Frame Position Scale

Frames Per Second