wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Unity Scripting Beginner (EN)

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

In Unity script is a ...

a)

Monobehavior Component

b)

Game Object

c)

Material

d)

Window in Workspace

e)

Function

2.

Programming language used in Unity ...

a)

C++

b)

C#

c)

Java

d)

Objective C

e)

PHP

3.

Script is needed, except...

a)

Respond input from player

b)

Instantiating GameObject programmatically

c)

Arrange events in the Gameplay

d)

Installing Unity package

4.

... function is used for updating physics related behaviors.

a)

Update

b)

FixedUpdate

c)

PostUpdate

d)

LateUpdate

5.

... function is used to update Game Logic.

a)

Update

b)

FixedUpdate

c)

LateUpdate

d)

PostUpdate

6.

... is called after the animation update.

a)

Update

b)

LateUpdate

c)

Fixed

d)

PostUpdate

7.

Access modifier which will allow a property value to be edited via the inspector is ...

a)

public

b)

private

c)

protected

d)

static

e)

const

8.

To be able to use the Unity Lifecycle, a class should extend ...

a)

MonoBehavior

b)

System.Collections

c)

UnityEngine

d)

UnityComponent

9.

... is the function to use another component in a script.

a)

GetComponent<>()

b)

FixedUpdate()

c)

FindComponent()

d)

DebugLog

e)

Instantiate()

10.

To schedule a function call after a time delay ... could be used.

a)

Invoke()

b)

Delay()

c)

Call()

d)

Start()

e)

Awake()