course2 lesson18

course2 lesson18

2nd Grade

8 Qs

quiz-placeholder

Similar activities

StarCraft 2 Quiz

StarCraft 2 Quiz

KG - Professional Development

10 Qs

Kuis Komputer

Kuis Komputer

2nd Grade - University

10 Qs

Coding- The New Literacy

Coding- The New Literacy

KG - 5th Grade

13 Qs

Flutter Intermediate

Flutter Intermediate

KG - Professional Development

10 Qs

Java Programming with Minecraft

Java Programming with Minecraft

1st - 12th Grade

9 Qs

minecraft!

minecraft!

KG - Professional Development

10 Qs

Scratch Code

Scratch Code

KG - 11th Grade

10 Qs

Roblox L32 Racing Remote Event

Roblox L32 Racing Remote Event

1st - 5th Grade

11 Qs

course2 lesson18

course2 lesson18

Assessment

Quiz

Created by

Academy OneSpace

Computers

2nd Grade

1 plays

Medium

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Choose the right code to assign function onSpawn to one soldier in the game with event type “spawn”

soldier.on(“spawn”,onSpawn)

game.setActionFor(“soldier”,”spawn”, onSpawn)

soldier.on(onSpawn, “spawn”)

game.setActionFor(soldier,”spawn”, onSpawn)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the code setActionFor do?

Set a code to a munchkin to attack

Set a function to a character to attack

Set a function to one character

Set a function to bunch of characters

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the code unit=event.target do here?

Targets the character that going to be spawned

Targets the enemy that the hero needs to attack

Targets the character that the function onSpawn is going to be assigned to

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

In this code which character is going to say “attaaaack”?

Soliders 

Archers and soldiers

archers

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the right example of game data?

Time of the game

The hero’s health

Number of enemies defeated

All of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the right code to track and display the time of the game

ui.track(“time”,game)

ui.track(game, time)

ui.track(game, “time”)

ui.track(time,game)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the right code to generate a random number between 15 and 70 and store it to the variable x

x = game.randomInteger(15, 70)

x = game.RandomInteger(15, 70)

x = game.randominteger(15, 70)

x = Game.RandomInteger(15, 70)

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what’s an event handler?

A code to handle an event.

A function that can be assigned to a character in the game

A code that makes an event occurs

a function to handle an event in the game