Day 4 Pygame - 26th June

Day 4 Pygame - 26th June

Professional Development

5 Qs

quiz-placeholder

Similar activities

Security Issues Of Memory Management In Modern Operating Systems

Security Issues Of Memory Management In Modern Operating Systems

Professional Development

10 Qs

fortnite quiz hungary:)

fortnite quiz hungary:)

Professional Development

10 Qs

Artificial Intelligence Quiz

Artificial Intelligence Quiz

Professional Development

10 Qs

Day 1 Pygame - 23rd June

Day 1 Pygame - 23rd June

Professional Development

8 Qs

Day 3 Pygame - 25th June

Day 3 Pygame - 25th June

Professional Development

5 Qs

PUBG

PUBG

3rd Grade - Professional Development

10 Qs

Types of Computers Based on Data Handling Capability

Types of Computers Based on Data Handling Capability

Professional Development

10 Qs

Advanced Scratch - Snowball Fight

Advanced Scratch - Snowball Fight

KG - Professional Development

5 Qs

Day 4 Pygame - 26th June

Day 4 Pygame - 26th June

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Coding Department

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of pygame.key.get_pressed()?

To draw a shape

To load a background

To check which keys are currently being pressed

To exit the program

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which key constant is used to detect the left arrow key?

pygame.KEY_LEFT

pygame.LEFT_ARROW

pygame.K_LEFT

pygame.ARROW_LEFT

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want the player to move left using the keyboard, which code will you use?

player_x += speed

player_y += speed

player_x -= player_speed

player_y -= player_speed

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you detect if the player presses the W key?

keys["W"] == True

if key == W:

if keys[pygame.K_w]:

if key.pressed("W"):

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which line of code allows the player to move downward?

player_y -= player_speed

player_y += player_speed

player_x += player_speed

player_x -= player_speed