Unity Certification Exam: Game Developer Study Guide, Exams of Nursing

This comprehensive study guide provides a detailed overview of key concepts and functionalities within the unity game development platform. It covers a wide range of topics, including navigation, game mechanics, animation, particle systems, audio, scripting, ui design, and more. The guide features 85 questions with detailed answers, providing a valuable resource for aspiring game developers preparing for the unity certification exam.

Typology: Exams

2024/2025

Available from 04/07/2025

EXAMINER2026
EXAMINER2026 🇺🇸

1

(1)

2.5K documents

1 / 7

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
P a g e | 1
UNITY CERTIFICATION EXAM
GAME DEVELOPER STUDY GUIDE
COMPLETE 85 QUESTIONS WITH
CORRECT DETAILED ANSWERS
ALREADY GRADED A+
What does 'Max Shape' do in navigation? - ANSWER>> Defines the steepest angle that
NavMesh agents can walk up
Whic of the following best describes the function of NavMesh? - ANSWER>> Defines
walkable surface for NavMesh Agents
Score accumulation, attacking, and plyer health are examples of: - ANSWER>> Game
Mechanics
Which method does NOT return a value? - ANSWER>> void Start();
In order to define new virtual input axes, you need to configure the key mappin in the: -
ANSWER>> Input Manager
The Awake method is called when: - ANSWER>> A scene starts
Which of the following sequences best describes how you would create an Animator
component of an object? - ANSWER>> Click on the 'Add Components' button and
choose Miscellaneous > Animator
When enabled, which Collider property allows GameObjects to pass through the
Collider? - ANSWER>> Is Trigger
In Game Design, non-player characters are: - ANSWER>> Computer Controlled
A floating point value is distinguished by what letter immediately following the number? -
pf3
pf4
pf5

Partial preview of the text

Download Unity Certification Exam: Game Developer Study Guide and more Exams Nursing in PDF only on Docsity!

UNITY CERTIFICATION EXAM

GAME DEVELOPER STUDY GUIDE

COMPLETE 85 QUESTIONS WITH

CORRECT DETAILED ANSWERS

ALREADY GRADED A+

What does 'Max Shape' do in navigation? - ANSWER>> Defines the steepest angle that NavMesh agents can walk up Whic of the following best describes the function of NavMesh? - ANSWER>> Defines walkable surface for NavMesh Agents Score accumulation, attacking, and plyer health are examples of: - ANSWER>> Game Mechanics Which method does NOT return a value? - ANSWER>> void Start(); In order to define new virtual input axes, you need to configure the key mappin in the: - ANSWER>> Input Manager The Awake method is called when: - ANSWER>> A scene starts Which of the following sequences best describes how you would create an Animator component of an object? - ANSWER>> Click on the 'Add Components' button and choose Miscellaneous > Animator When enabled, which Collider property allows GameObjects to pass through the Collider? - ANSWER>> Is Trigger In Game Design, non-player characters are: - ANSWER>> Computer Controlled A floating point value is distinguished by what letter immediately following the number? -

ANSWER>> f Besides Exit Time, transition conditions can be driven by: - ANSWER>> Parameters Dragging an Animator Controller onto a GameObject in the inspector creates an: - ANSWER>> Animator Component Which Emit From option allows particles to originate from anywhere within the emitter geometry? - ANSWER>> Volume The Shape section of a particle system defines the geometry of the: - ANSWER>> Emitter Circle, Edge, Box, and cone are examples of: - ANSWER>> Emitter Shapes In a particle system of smocke, which property is used to change from dense black to semi-transparent gray, and fully white? - ANSWER>> Color Over-Lifetime To create an effect showing multiple particles spawing from originals, you would use a: - ANSWER>> Sub-Emitter Which option begins playing the sound as soon as the GameObject loads? - ANSWER>> Play on Awake To make a sound play over and over, which of the following needs to be checked? - ANSWER>> Looped What is the effect applied to the SoundEffects group called? - ANSWER>> Flange To stimulate the echoing and distortion of a type of sound enviorment such as a cave, arena, or forest, which of the following audio components would be the best option to use? - ANSWER>> Reverb Zones To modify the volume of an audio clip, the clip must be applied to: - ANSWER>> An audio source component A _________ executes a set of instructions and can either return a value or not return a value - ANSWER>> Method

At a game studio, this person is responsible for ensuring the overall look and feel is consistent? - ANSWER>> Art Director This game type often features mechanics such as card games, board games, simple arcade-style games, and puzzles: - ANSWER>> Causal Game Concept Art - ANSWER>> Provides a unifying point for art direction Possible release of information about work at a studio is often governed by this kind of legal contract? - ANSWER>> Non-Disclosure Agreement Score Accumulation, Attacking, and player health are examples of: - ANSWER>> Game Mechanics Identify the UI Element that is used to modify the icon size in the Project View Window - ANSWER>> C. (The scroll bar in the bottom right of the PVW) Which window in the Unity Editor allows you to view, sort, and organize all of the assets for a game? - ANSWER>> Project Window The Project Window allows you to: - ANSWER>> Modify the file structure of assets To reconfigure the Unity Editor user interface: - ANSWER>> Drag windows by their tabs into new locations Which window allows parenting of GameObjects? - ANSWER>> Hierarchy Which tool allows you to manually slice an image into multiple sprites - ANSWER>> The Sprite Editor Unity can import this transfer file format for models having meshes, bones, skin, weishgts, and animations - ANSWER>> FBX A Prefab in the Unity Editor is: - ANSWER>> An asset tpe that stores a GameObject with components and properties Which of the following statements best differentiates a Quad from a Plane - ANSWER>> The Plane has internal divisions and more polygons

Saving a scene saves - ANSWER>> The current placement of objects in the scene and Hiearchy The two script types supported in Unity are: - ANSWER>> C# and UnityScript Acceptable formats for audio are: - ANSWER>> AIFF, MP3, WAV, and Ogg The Project Window toolbar allows searching of assets by: - ANSWER>> Label and Type The breadcrumb trail in the Project Window shows: - ANSWER>> The file path of the selected asset Modifying the organization of assets is done in the: - ANSWER>> Project Window The material rendering mode uses black in the alpha channel to define where a material is exactly NOT appearing - ANSWER>> Cutout The Albedo of a material is defined as: - ANSWER>> The color of the material without the lighting data This material property causes polygons to appear and light as if they had more surface detail: - ANSWER>> Normal This material properly controls spreading of light on microsurface detail: - ANSWER>> Smoothness The Specular property of a material: - ANSWER>> Controls the color and strength of the reflection Which window allows the parenting of GameObjects? - ANSWER>> Hiearchy Windows In a Rigidbody component, this determines the air resistance from forces affecting the GameObject: - ANSWER>> Drag In a Rigidbody, this enables objects to fall: - ANSWER>> Use Gravity To add a Box Collider to a GameObject using the top menu, choose: - ANSWER>> Components > Physics > Box Collider

Animator Controllers allow you to: - ANSWER>> Arrange and maintain a set of animations for a GameObject Which of the following sequences best describes how you would create a new transition: - ANSWER>> Right-click on a state and choose 'Make Transition' To create an Animator Controlle: - ANSWER>> Right-click in the Project Window and choose Create > Animator Controller The default transition is based on: - ANSWER>> Exit Time Define the role of the 'Any State': - ANSWER>> A state that allows transitions from any other state DeltaTime counts seconds between: - ANSWER>> Frames Which type of variable is available to other scripts? - ANSWER>> Public What data type must be used in the following code? _____ number = 8.0f - ANSWER>> Float A Method is used to: - ANSWER>> Group Instructions Finish the following code to reference GameObject's position: Vector3 pos = ______ - ANSWER>> transform.position The process of creating a NavMesh from the level geometry marked as Navigation Static is called: - ANSWER>> Baking Obstacle avoidance is how Nav Mesh Agents: - ANSWER>> Avoid collisions with other NavMesh Agents and geometry