Search Header Logo
coding latihan

coding latihan

Assessment

Presentation

•

Computers

•

5th Grade

•

Easy

Created by

Satriyo Laksono

Used 7+ times

FREE Resource

0 Slides • 22 Questions

1

Multiple Choice

Question image

Coding, bahasa Python yang benar adalah

1

a=4 repeat 2: forward(a) turn(right)

2

a=5 repeat 3: forward(a) turn(right)

3

a=4 repeat 3: forward(a) turn(right)

4

a=5 repeat 3: forward(a) turn(left)

2

Multiple Choice

Question image

Coding, bahasa Python yang benar adalah

1

MyTurtles = [turtle0,turtle1,turtle2,turtle3] myTurtles[0].forward(3) myTurtles[1].forward(3) myTurtles[2].forward(2) myTurtles[2].forward(2) forward(7)

2

MyTurtles = [turtle0,turtle1,turtle2,turtle3] myTurtles[0].forward(3) myTurtles[1].forward(3) myTurtles[2].forward(2) myTurtles[3].forward(2) forward(7)

3

MyTurtles = [turtle0,turtle1,turtle2,turtle3] myTurtles[0].forward(3) myTurtles[1].forward(3) myTurtles[1].forward(2) myTurtles[3].forward(2) forward(7)

4

MyTurtles = [turtle0,turtle1,turtle2,turtle3] myTurtles[0].forward(3) myTurtles[1].forward(3) myTurtles[2].forward(2) myTurtles[3].forward(3) forward(7)

3

Multiple Choice

Question image

Coding, bahasa Python yang benar adalah

1

repeat 2: forward(2) forwardUp() forwardDown() forward(1)

2

repeat 2: forward(2)

forwardDown()

forwardUp()

forward(1)

3

repeat 2: forward(2) forwardUp() forwardDown() forward(2)

4

repeat 2: forward(1) forwardUp() forwardDown() forward(1)

4

Multiple Choice

Question image

Coding, bahasa Python yang benar adalah

1

forward(2) forwardUp() forwardDown() forward(1) forward(2) forwardDown()

forwardUp()

forward(1)

2

forward(2) forwardUp() forwardDown() forward(1) forward(2) forwardUp() forwardDown() forward(1)

3

forward(2) forwardUp() forwardDown() forward(1) forward(1) forwardUp() forwardDown() forward(1)

4

forward(2) forwardUp()

forward(1)

forwardDown()

forward(2) forwardUp() forwardDown() forward(1)

5

Multiple Choice

Question image

Coding, bahasa Python yang benar adalah

1

beaver.forward(3) forward(9)

2

beaver.forward(3) forward(8)

3

beaver.forward(3) forward(7)

4

beaver.forward(2) forward(9)

6

Multiple Choice

Question image

Coding, bahasa Python yang benar adalah

1

Forward(4) turn(right) forward(6)

2

Forward(4) turn(left) forward(6)

3

Forward(4)

forward(6) turn(right)

4

Forward(4)

forward(6) turn(left)

7

Multiple Choice

The Codementum platform is basically designed for our students to code . Therefore the blocks of the character in the scene are not ready and it is formed automatically in the mode of blocks when the character on the scene is clicked.

1

Pinguin

2

Monkey

3

Beaver

4

Seal

8

Multiple Choice

It is used for pushing our character forward. It moves according to the value written inside.

1

Forward

2

Forward Up

3

Forward Down

4

Turn

9

Multiple Choice

It is the command which pushes our character one step up and one step forward from the scene. Using this command our characters can reach the targets which take place in one upper stage of our task scene.

1

Forward

2

Forward Up

3

Forward Down

4

Turn

10

Multiple Choice

It is used to turn our character within the stage. Thanks to this command our character can turn right, left or backwards.

1

Forward

2

Forward Up

3

Forward Down

4

Turn

11

Multiple Choice

It is the command which pushes our character one step down and one step forward from the scene. With this command our characters can reach the targets which take place in one-down stage of our task scene.

1

Forward

2

Forward Up

3

Forward Down

4

Turn

12

Multiple Choice

Thanks to the repeat loop, instead of writing our repeating processes more than once, it is enough to write it within the loop and specify the repeat number we want. Thus the number of our command lines decreases and we can reach the most efficient and correct commands, according to three star application.

1

Repeat

2

Array

3

The basics

4

Variable

13

Multiple Choice

Arrays which can keep multiple variables within them enable us to assign separate tasks for each of our characters in case there are multiple characters having the same name in our task scenes. We can transfer our characters into an array with their common names and recall our characters according to the numbers we gave.

1

Repeat

2

Array

3

The basics

4

Variable

14

Multiple Choice

The name of the variables may be letters such as a,b,c or words in a similar way. The important thing is to use the name which we use to indicate the variable in the beginning in the same way when we recall it.

1

Repeat

2

Array

3

The basics

4

Variable

15

Multiple Choice

Question image

Perintah yang benar adalah

1

forward(4)

turn(left)

forward(6)

2

forward(6)

turn(left)

forward(4)

3

forward(4)

turn(right)

forward(6)

4

forward(6)

turn(right)

forward(4)

16

Multiple Choice

Question image

Perintah yang benar adalah

1

beaver.forward(3)

forward(3)

turn(left)

forward(8)

2

beaver.forward(3)

forward(3)

turn(right)

forward(8)

3

beaver.forward(3)

forward(3)

turn(left)

forward(7)

4

beaver.forward(3)

forward(3)

turn(right)

forward(7)

17

Multiple Choice

Question image

Perintah yang benar adalah

1

repeat 2:

forward(2)

forwardUp()

forwardDown()

forward(1)

2

repeat 2:

forward(2)

forwardUp()

forward(1)

forwardDown()

3

repeat 2:

forward(2)

forwardUp()

forwardDown()

forward(2)

4

repeat 2:

forward(2)

forwardUp()

forward(1)

forwardDown()

18

Multiple Choice

Question image

Perintah yang benar adalah

1

a=4

repeat 3:

forward(a)

a=a+1

2

a=4

repeat 3:

forward(a)

a=a-1

3

a=3

repeat 3:

forward(a)

a=a+1

4

a=3

repeat 3:

forward(a)

a=a-1

19

Multiple Choice

Question image

Perintah yang benar adalah

1

repeat 3:

jump(1)

forward(1)

forwardUp()

forwardDown()

forward(1)

2

repeat 2:

jump(1)

forward(1)

forwardUp()

forwardDown()

forward(1)

3

repeat 2:

jump(1)

forward(1)

forwardUp()

forwardDown()

forward(2)

4

repeat 2:

jump(1)

forward(2)

forwardUp()

forwardDown()

forward(1)

20

Multiple Choice

Question image

Perintah yang benar adalah

1

myTurtles=[turtle0,turtle1]

myTurtles[0].forward(4)

myTurtles[1].forward(3)

forward(5)

2

myTurtles=[turtle0,turtle1]

myTurtles[0].forward(2)

myTurtles[1].forward(3)

forward(5)

3

myTurtles=[turtle0,turtle1]

myTurtles[0].forward(3)

myTurtles[1].forward(3)

forward(5)

4

myTurtles=[turtle0,turtle1]

myTurtles[0].forward(3)

myTurtles[1].forward(3)

forward(4)

21

Multiple Choice

Question image

We can easily write repetitive actions which we need to write for completing our tasks thanks to for loop, which allows us to specify the actions we want to repeat and how many times we want them to repeat. The commands we write within for loop repeat by the number we specified as the interval.

1

Variable

2

Array

3

Beaver

4

For Loop

22

Multiple Choice

Question image

We can easily write repetitive actions which we need to write for completing our tasks thanks to for loop, which allows us to specify the actions we want to repeat and how many times we want them to repeat. The commands we write within for loop repeat by the number we specified as the interval.

1

Variable

2

Array

3

Beaver

4

For Loop

Question image

Coding, bahasa Python yang benar adalah

1

a=4 repeat 2: forward(a) turn(right)

2

a=5 repeat 3: forward(a) turn(right)

3

a=4 repeat 3: forward(a) turn(right)

4

a=5 repeat 3: forward(a) turn(left)

Show answer

Auto Play

Slide 1 / 22

MULTIPLE CHOICE