EXIT TICKET: Unity Review #1

EXIT TICKET: Unity Review #1

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

5 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which tool is used to add packages that extend Unity capabilities?

Back

Package Manager

2.

FLASHCARD QUESTION

Front

True or False: Inside an if statement, there can only be one condition.

Back

False

3.

FLASHCARD QUESTION

Front

When a button is added to a Canvas, the On Click event is available in the Inspector. To add a method to this event, what type of access modifier must the method use?

Back

Public

4.

FLASHCARD QUESTION

Front

A programmer is creating a player at runtime and wants to store the resulting instance into a variable using the following code:

player = Instantiate(playerPrefab);

Which is the correct data type the player variable should have? Options: String, Int, Boolean, GameObject

Back

GameObject

5.

FLASHCARD QUESTION

Front

When the game starts playing in the editor, the following message is shown in the Console Window: "Hello World!". Which line of code will generate that message if added to the Start Method? Options: Debug.Log("Hello World" + "!");, Debug.Log(Hello World!);, Debug.Log("HelloWorld" + "!");

Back

Debug.Log(Hello World!);