Day 4 Pygame - 26th June

Day 4 Pygame - 26th June

Professional Development

5 Qs

quiz-placeholder

Similar activities

fortnight

fortnight

KG - Professional Development

7 Qs

Fundamentals of Digital Technology

Fundamentals of Digital Technology

Professional Development

7 Qs

COMPUTER SHORTCUT KEYS

COMPUTER SHORTCUT KEYS

6th Grade - Professional Development

10 Qs

Minecraft Mob quiz

Minecraft Mob quiz

KG - Professional Development

10 Qs

Yankees/Harry Potter

Yankees/Harry Potter

Professional Development

10 Qs

Day 6 Pygame - 1st July

Day 6 Pygame - 1st July

Professional Development

5 Qs

Squid game

Squid game

KG - Professional Development

10 Qs

ict exam

ict exam

KG - Professional Development

10 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