NEW
Font size
WorksheetsTỔNG KẾT CLB MINECRAFT K345 25-26
Total questions: 25
Worksheet time: 13mins
What does “iteration” mean in coding?
Doing something once and stopping
Repeating an action many times
Deleting all the code
Auto-saving the project
Which word has the same meaning as “iteration”?
Loop
Slice
Jump
Color
Which type of loop repeats a specific number of times?
Forever
Repeat / For
While (true)
If – then
The Agent in MakeCode moves based on what?
The color of the ground
The direction the Agent is facing
The player’s location
The number of items in inventory
Why are loops helpful in coding?
They make code shorter and easier to fix
They make the computer run 10 times faster
They make the Agent fly
They mean you never need to write code again
In Minecraft, what do the coordinates (X, Y, Z) determine?
Color of the block
Position in 3D space
Type of block being used
Size of the world
The relative coordinate position/player position is always represented in the form of:
(X, Y, Z)
(~X, ~Y, ~Z)
(*X, *Y, *Z)
(#X, #Y, #Z)
When a player moves, does their absolute coordinate change?
Yes
No
Only when the player jumps
Only when using a command
When the player moves, their relative coordinates (~0,~0,~0):
Do not change
Change according to the direction of movement
Decrease gradually
Increase gradually
What happens when the chat command "ga" is used in this code?
a) 10 animals are spawned
b) 1 animal is spawned
c) Nothing happens
In Creative Mode, how do you fly?
Press the jump key twice
Press the run key
Press the move forward key
Press the crouch key
To change the size of the circle, which parameter should you edit?
center
radius
around
replace
What does the coordinate "at ~ 0 ~ 0 ~ 0" mean?
What does the coordinate "at ~ 0 ~ 0 ~ 0" mean?
Spawns the animal at the player's current location
Spawns the animal at the player's current location
Spawns the animal at the world's (0, 0, 0) coordinate
Spawns the animal at the world's (0, 0, 0) coordinate
Teleports the player to this location
Teleports the player to this location
Spawns the animal at a random location
Spawns the animal at a random location
What is a variable used for in coding?
To store information for later use
To decorate the game interface
Only to count score
To name characters
Which special variable stores a location in 3D space in Minecraft MakeCode?
Number variable
Boolean variable
String variable
Position variable
What makes a good variable name?
Short but unclear
All uppercase
Meaningful and descriptive
Same for all variables
How can you change the value of a variable in MakeCode?
Using “Change variable to…” block
Using “Repeat until…” block
Using “If–Else” block
You cannot change it
Which block in MakeCode is used for conditional logic?
Loops
Logic drawer (If–Then–Else)
Math
Agent
What is the format of a basic conditional?
Do–Repeat
If (condition), then (action)
When–Forever
Wait–Until
In the example “If you clean your room, then you can go out,” what happens if you don’t clean your room?
You still go out
You cannot go out
You restart the program
Nothing
Which command does the agent use to teleport to a player?
agent.move(FORWARD,1)
agent.teleportToPlayer()
agent.turn(LEFT)
agent.giveItem()
What is the effect of the command agent.till(DOWN)?
Sow seeds
Till the land into farmland
Break the block in front
Create water
What should I do before using agent.place(DOWN)?
Select the correct slot using agent.setSlot()
Teleport Agent
Turn left
Jump up
Which command is used to break the block below?
agent.break()
agent.destroy(DOWN)
agent.clear(FORWARD)
agent.remove(DOWN)
What is the purpose of nested loops?
Continuous teleportation
Create fields with multiple rows & columns
Build walls
Create new skins
