Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Unity Certification questions with correct answers, Exams of Advanced Education

Unity Certification questions with correct answers

Typology: Exams

2024/2025

Available from 07/14/2025

EXAMDOC
EXAMDOC 🇺🇸

4.2

(7)

19K documents

1 / 12

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Unity Certification questions with correct answers
CHAPTER 1 - Correct Answer-
Concept Art - Correct Answer-Provides a unifying point for art direction
Game Mechanics - Correct Answer-Score accumulation, attacking, and player
health
Casual games - Correct Answer-This game type often features mechanics such as
card games, board games simple arcade style games and puzzles.
Art Director - Correct Answer-At a game studio, the person is responsible for
ensuring the overall look and feel is consistent
Non-Disclosure Agreement - Correct Answer-Possible release information about
work at a studio is often governed by this kind of legal contract
CHAPTER 2 - Correct Answer-
Window in the Unity Editor allows you to view, sort, and organize all of the assets
for the game? - Correct Answer-Project Window
The Project Window allows you to: - Correct Answer-Modify the file structure of
assets
To reconfigure the Unity Editor user interface: - Correct Answer-Drag windows by
their tabs into new locations
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download Unity Certification questions with correct answers and more Exams Advanced Education in PDF only on Docsity!

Unity Certification questions with correct answers

CHAPTER 1 - Correct Answer- Concept Art - Correct Answer-Provides a unifying point for art direction Game Mechanics - Correct Answer-Score accumulation, attacking, and player health Casual games - Correct Answer-This game type often features mechanics such as card games, board games simple arcade style games and puzzles. Art Director - Correct Answer-At a game studio, the person is responsible for ensuring the overall look and feel is consistent Non-Disclosure Agreement - Correct Answer-Possible release information about work at a studio is often governed by this kind of legal contract CHAPTER 2 - Correct Answer- Window in the Unity Editor allows you to view, sort, and organize all of the assets for the game? - Correct Answer-Project Window The Project Window allows you to: - Correct Answer-Modify the file structure of assets To reconfigure the Unity Editor user interface: - Correct Answer-Drag windows by their tabs into new locations

Which window allows parenting of GameObjects? - Correct Answer-Hierarchy Identify the UI element that is used to modify the icon size in the Project View Window - Correct Answer-The slider in the lower right corner of the Project Window CHAPTER 3 - Correct Answer- A Prefab in the Unity Editor is: - Correct Answer-An asset type that stores a GameObject with components and properties Which of the following statements best differentiates a Quad from a Plane? - Correct Answer-The Plane has internal divisions and more polygons Saving a scene saves: - Correct Answer-The current placement of objects in the scene and hierarchy Unity can import this transfer file format for models having meshes, bones, skin weights, and animation: - Correct Answer-FBX Which tool allows you to manually slice an image into multiple sprites? - Correct Answer-The Sprite Editor CHAPTER 4 - Correct Answer- Acceptable formats for audio are: - Correct Answer-MP3, OGG, WAV, AIFF

CHAPTER 6 - Correct Answer- Drag - Correct Answer-In a Rigidbody component, this determines the air resistance from forces affecting the GameObject Use Gravity - Correct Answer-In a Rigidbody, this enables objects to fall: To add a Box Collider to a GameObject using the top menu, choose: - Correct Answer-Components>Physics>Box Collider The role of a raycast is to: - Correct Answer-Locate colliders along the path of a ray Hierarchy Window - Correct Answer-Window that allows the parenting of GameObjects: CHAPTER 7 - Correct Answer- On a Light Component, a Culling Mask: - Correct Answer-Determines which layers are affected by the light Changing the intensity of a light adjusts it's: - Correct Answer-Brightness This is a light cone shaped light, which spreads out as it gets further away from the source - Correct Answer-Spot light This shadow type casts shadows that approximate the natural fuzziness of real shadows due to emission area size and the bouncing of light - Correct Answer-Soft

What type of light casts a shape on a wall or floor? - Correct Answer-Directional CHAPTER 8 - Correct Answer- Selecting Generate Lightmap UVs in the Import Settings of a Model: - Correct Answer-Creates an additional set of UV coordinates of Lightmap data To darken the ambient occlusion in baked lighting: - Correct Answer-Increase the Ambient Occlusion amount Light Probes - Correct Answer-Sample baked lighting at specific points in a scene Lightmaps - Correct Answer-Store lighting data that has been precalculated EXR - Correct Answer-The type of file Lightmaps use to store data CHAPTER 9 - Correct Answer- Dope Sheet - Correct Answer-This view in the animation window allows multiple objects' keys to be shown on horizontal tracks: Animation Record - Correct Answer-The play controls shown in red indicate the Unity Editor is in this mode: Curve Editor - Correct Answer-This view in the animation window shows animations as graphs:

transform.position - Correct Answer-Finish the following code to reference the gameObjects's position: Vector3 pos = ??? Frames - Correct Answer-DeltaTime counts seconds between: Public - Correct Answer-Which type of variable is accessible to other scripts? Group instructions - Correct Answer-A method is used to: CHAPTER 12 - Correct Answer- Baking - Correct Answer-The process of creating a NavMesh from level geometry marked as Navigation Static is called: Defines walkable surfaces for Nav Mesh Agents - Correct Answer-Which of the following best describes the function of a Nav Mesh? Defines the steepest angle that Nav Mesh Agents can walk up - Correct Answer- What does Max Slope do in navigation? ...avoid collisions with other Nav Mesh Agents and geometry - Correct Answer- Obstacle avoidance is how Nav Mesh Agents... CHAPTER 13 - Correct Answer- Game Mechanics - Correct Answer-Score accumulation, attacking, and player health

void Start() - Correct Answer-Which method does not return a value? A scene starts - Correct Answer-The Awake method is called when... Click on the Add Components button and choose Miscellaneous>Animator - Correct Answer-Which of the following sequences best describes how you would create an Animator component on an object? Input Manager - Correct Answer-In order to define new virtual axes, you need to configure the key mapping in the: CHAPTER 14 - Correct Answer- Computer-controlled - Correct Answer-In game design, non-player characters are: Animator Component - Correct Answer-Dragging an Animator Controller onto a GameObject in the Inspector creates an: f - Correct Answer-A floating point variable is distinguished by what letter immediately following the number IsTrigger - Correct Answer-When enabled, which Collider property allows GameObjects to pass through the Collider? Parameters - Correct Answer-Besides Exit Time, transition conditions can be driven by:

What is the effect applied to the Soundeffects group called? - Correct Answer- Flange Which option begins playing the sound as soon as the GameObject loads? - Correct Answer-Play on Awake CHAPTER 17 - Correct Answer- GetComponent - Correct Answer-Which method gets a reference to a component on a GameObject? Vector3(0) - Correct Answer-In this line of code, which of these does not set playerPosition to 0,0,0? Vector3 playerPosition = ??? Create>Empty - Correct Answer-To create this placeholder for animation in the Animator Window, you would first right-click in any open area. Your next action would be to choose? Method - Correct Answer-A ??? executes a set of intructions and can either return a value or not return a value. Trigger - Correct Answer-The transition parameter type is reset by the controller when consumed by a transition: CHAPTER 18 - Correct Answer- AudioSource.Play - Correct Answer-What method is called when this button is clicked?

Some of the available options for the Transition property of a button are: - Correct Answer-Sprite Swap and Color Tint In the image shown, that has caused the change in property names of the Rect Transform? - Correct Answer-Splitting the anchor Image - Correct Answer-In which UI component would you use a Sprite? Canvas Scaler - Correct Answer-Which component allows the canvas to resize with a display? CHAPTER 19 - Correct Answer- Unity Cloud Build - Correct Answer-Android, Web and iOS are some of the supported platforms for: A source control repository - Correct Answer-In order to utilize Unity Cloud Build, your project must be synced to: Rewarded Ads cannot be skipped be default - Correct Answer-Differentiate between Rewarded and Simple Ads: Sprite - Correct Answer-An image for an Image Component must be imported as this type: EXTRAS - Correct Answer-