NEW
Font size
WorksheetsMakeCode Arcade Questions
Total questions: 15
Worksheet time: 8mins
What is the first step to creating a variable in MakeCode Arcade?
Click on "Advanced" and then "Variables"
Use the "Create Variable" block in the toolbox
Drag a "Set Variable" block to the workspace
Define it in the code editor directly
In MakeCode Arcade, which block would you use to change the value of a variable?
Set Variable block
Change Variable block
Show Variable block
Set to 0 block
What is the main purpose of the "on start" block in MakeCode Arcade?
It runs when the game is reset
It initializes variables and game settings
It checks for user input
It makes the sprite move
How do you create a loop that repeats indefinitely in MakeCode Arcade?
Use a "repeat" block
Use a "while" loop block
Use a "forever" block
Use a "loop until" block
5. What does the "if" block in MakeCode Arcade do?
It checks a condition and executes code if the condition is true.
It repeats a block of code a certain number of times.
It defines a variable to store data.
It stops the execution of the program.
What does the 'if' block do in MakeCode Arcade?
It repeats a block of code a specific number of times
It checks if a condition is true and runs a block of code if true
It sets the value of a variable
It stops the program
How would you store multiple values (like scores from different players) in MakeCode Arcade?
Use a single variable for each score
Use an array to store multiple values
Use a "text" block to store values
Store the values in the "sprites" block
In MakeCode Arcade, which block would you use to display a variable’s value on the screen?
Show variable block
Set sprite block
Set text block
Show score block
What is the purpose of the "sprite" block in MakeCode Arcade?
It creates and manages characters or objects in the game
It handles the game score
It plays background music
It sets up the user interface
Which block is used to detect user input (like a button press) in MakeCode Arcade?
On button pressed block
On sprite clicked block
If condition block
Forever block
How would you store multiple player scores in a single variable in MakeCode Arcade?
Use an array to store each player's score
Create a new variable for each player
Use a single variable and reset it after each round
Store scores in the background music settings
Which of the following control blocks would you use to repeat an action until a condition is met?
Forever block
Repeat until block
On start block
On button pressed block
In MakeCode Arcade, how would you create a function that can be reused multiple times in the game?
Use the "function" block under "Advanced"
Drag the same code block repeatedly
Use the "repeat" block
Use the "forever" block
How can you change the appearance of a sprite in MakeCode Arcade?
By changing its variable value
By using the "set sprite" block
By using the "set image" block
By modifying the background color
Which block in MakeCode Arcade would you use to set a sprite's position on the screen?
Set sprite block
Set image block
Set position block
Set velocity block
