Depth Information: 1 Point
Depth Information: 1 Point
1 point
Color information
Depth information
Time information
Sound information
Clear selection
Clear selection
Clear selection
Clear selection
Clear selection
6. What role does the world coordinate space play in rendering a scene?
1 point
Clear selection
7. Which term is commonly used to describe the size of objects in the world coordinate space?
1 point
Volume
Scale
Magnitude
Density
Clear selection
8. In the context of game development, what does the term "parent-child relationship" refer to?
1 point
Clear selection
9. In a game scene with a parent-child relationship, what happens if the parent object is rotated?
1 point
Clear selection
Rigidbody
Camera
AnimatorScript
Collider
Clear selection
11. What is the primary purpose of the Collider component in Unity?
1 point
Clear selection
An operating system
A programming language
A game development engine
A video editing software
Clear selection
Audio Source
Light
Mesh Renderer
Rigidbody
Clear selection
14. What type of lighting source in Unity simulates light emitted from a specific point in all
directions?
1 point
Directional Light
Spot Light
Area Light
Point Light
Clear selection
15. How does the range property of a Unity Point Light affect the lighting in the scene?
1 point
Clear selection
LoadLevel()
LoadGame()
Load()
LoadScene()
Clear selection
18. What does the Unity Spotlight component allow developers to do?
1 point
Clear selection
19. What is PlayerPrefs used for in Unity's scene saving and loading?
1 point
Clear selection
20. An asset type that allows you to store game objects and create multiple instances later is
called:
1 point
Package
Prefab
Asset Store
Serialized
Clear selection
21. To define input axes and game actions for your project you need:
1 point
Input System
Physics Manager
PresetManager
PlayerSettings
Clear selection
Factory
Components
Render
Props
Clear selection
23. Select the two things that a data type tells us below:
1 point
Time.timeScale = 0;
Time.deltaTime = 0;
Time fixedDeltaTime = 0;
Time.time = 0;
Clear selection
25. To make your camera point at an object as it moves what method you need to use:
1 point
Follow()
LookAt()
You need to make camera child of object
No method exists
Clear selection
Clear selection
27. In the template for the Unity script, all scripts include the methods:
1 point
Create()
Start()
Update()
Stop()
28. In Unity's Animator Controller, what are Animation States used for?
1 point
Clear selection
Creates a new file and writes the text to the myFile.txt. If the file already exists, then throw an exception.
Opens file for reading or write operation
Creates a new file and writes the text to the myFile.txt
Creates a new file and writes the text to the myFile.txt. If the file already exists, then overwrite the text to
the file.
Clear selection
30. What is the purpose of the Update() method in Unity's MonoBehaviour class?
1 point
Clear selection
31. Which Unity method is used to handle collision events between GameObjects with colliders?
1 point
OnTriggerMethod()
OnCollisionExit()
OnCollisionStay()
OnTriggerExit()
OnCollisionEnter()
Clear selection
To write scripts in C#
To manage audio sources
To control animation transitions and states
To handle user input
Clear selection
Clear selection
34. What is the purpose of the LateUpdate() method in Unity's MonoBehaviour class?
1 point
Clear selection
35. Which of following is NOT a type of files for Game Configuration Storage?
1 point
.csv
.bmp
.txt
.dat
.xml
Clear selection
Rigidbody
Animator
Collider
Transform
Clear selection
OnMouseDown()
OnClick()
MouseClick()
OnMouseClick()
Clear selection
38. In Unity's Animator Controller, how can you blend between two animations smoothly?
1 point
Clear selection
Clear selection
40. What does the 'public' keyword signify when declaring a variable in a MonoBehaviour
script?
1 point
It means the variable can only be accessed within the same class
It indicates the variable is constant and cannot be changed
It means the variable is accessible from other scripts and Unity's editor
It indicates the variable is static and shared across all instances of the class