Font size
WorksheetsMinecraft - Python Rivision
Total questions: 10
Worksheet time: 7mins
Choose correct way of displaying "Hi"
player.say ("Hi")
player say "Hi"
Player.hi.say
Play (Say) hi
You need to place a brick block next to you (to the left of your character). Choose correct code:
block.place (BRICK, pos (-1,0,0))
blocks.place (BRICKS, pos (1,-1,0))
blocks.place (BRICKS, pos (-1,0,0))
blocks.place (Grass, pos (0,0,0))
Fill in the missing text to place a Redstone lamp 6 blocks above your head.
blocks.place(REDSTONE_LAMP, pos(_ _ _ ))
(a)
Create a variable called car1 and give it the data ford.
...... = ........
(a)
Choose the correct data type for "fruit"
integer
string
double
char
Choose the correct data type for : 2
number
string
double
integer
Choose the correct data type for: 25.35
integer
float
real number
string
Choose the correct data type for: "2"
integer
number
string
double
Complete the code to place a block in front of you.
blocks.place(BRICKS, pos(_ _ _ ))
(a)
Select the 2 options to display : apples
a = "apples"
player.say(a)
player.say(apples)
a = "apples"
fruit = a
player.say(fruit )
a = "apples"
fruit = b
player.say(fruit )
fruit = apples
player.say(fruit )
