wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Minecraft - Python Rivision

Total questions: 10

Worksheet time: 7mins

Name
Class
Date
1.

Choose correct way of displaying "Hi"

a)

player.say ("Hi")

b)

player say "Hi"

c)

Player.hi.say

d)

Play (Say) hi

2.

You need to place a brick block next to you (to the left of your character). Choose correct code:

a)

block.place (BRICK, pos (-1,0,0))

b)

blocks.place (BRICKS, pos (1,-1,0))

c)

blocks.place (BRICKS, pos (-1,0,0))

d)

blocks.place (Grass, pos (0,0,0))

3.

Fill in the missing text to place a Redstone lamp 6 blocks above your head.

blocks.place(REDSTONE_LAMP, pos(_ _ _ ))

(a)  

4.

Create a variable called car1 and give it the data ford.

...... = ........

(a)  

5.

Choose the correct data type for "fruit"

a)

integer

b)

string

c)

double

d)

char

6.

Choose the correct data type for : 2

a)

number

b)

string

c)

double

d)

integer

7.

Choose the correct data type for: 25.35

a)

integer

b)

float

c)

real number

d)

string

8.

Choose the correct data type for: "2"

a)

integer

b)

number

c)

string

d)

double

9.

Complete the code to place a block in front of you.

blocks.place(BRICKS, pos(_ _ _ ))

(a)  

10.

Select the 2 options to display : apples

a)

a = "apples"

player.say(a)

b)

player.say(apples)

c)

a = "apples"

fruit = a

player.say(fruit )

d)

a = "apples"

fruit = b

player.say(fruit )

e)

fruit = apples

player.say(fruit )