All Practice Exams

100+ Free Unity Certified Associate: Game Developer Practice Questions

Pass your Unity Certified Associate: Game Developer exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

Which folder name has special meaning in Unity, causing any assets inside it to be included in the build and loadable by name at runtime via the Resources API?

A
B
C
D
to track
2026 Statistics

Key Facts: Unity Certified Associate: Game Developer Exam

100

Number of Questions

Unity Certification FAQ

90 minutes

Time Limit

Unity / candidate reports

500 of 700

Passing Score (scaled 200-700)

Unity Certification FAQ

$259

Voucher Fee (USD)

Unity Store (Pearson VUE)

Unity 6

Exam Version Basis

Unity

2 years

Credential Validity

Unity Certification

The Unity Certified Associate: Game Developer exam is a 100-question, 90-minute multiple-choice test from Unity, delivered through Pearson VUE for $259. Scores are scaled 200 to 700, and 500 is required to pass. Based on Unity 6, it covers 16 domains including the Editor interface, asset management, C# programming and the MonoBehaviour lifecycle, animation, physics, lighting, audio, materials, navigation, and user interface. The credential is valid for two years.

Sample Unity Certified Associate: Game Developer Practice Questions

Try these sample questions to test your Unity Certified Associate: Game Developer exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In the Unity Editor, which window displays the hierarchy of all GameObjects that currently exist in the open scene?
A.The Hierarchy window
B.The Project window
C.The Inspector window
D.The Console window
Explanation: The Hierarchy window lists every GameObject in the currently loaded scene(s) and shows parent-child relationships. Selecting an object there reveals its components in the Inspector.
2Every GameObject in a Unity scene is guaranteed to have which single component attached that cannot be removed?
A.Rigidbody
B.Mesh Renderer
C.Collider
D.Transform
Explanation: The Transform component is mandatory on every GameObject. It stores position, rotation, and scale and defines the object's place in the scene hierarchy, so Unity does not allow it to be removed.
3You want to reposition, rotate, and resize a GameObject directly in the Scene view using the manipulation gizmos. Which toolbar tools, in order, perform Move, Rotate, and Scale?
A.Hand, Move, Rotate
B.Pan, Orbit, Zoom
C.Rect, Move, Transform
D.Move, Rotate, Scale
Explanation: Unity's main transform tools are Move (W), Rotate (E), and Scale (R). Each shows a gizmo on the selected object that lets you edit translation, rotation, or scale interactively in the Scene view.
4Functionality is added to a GameObject in Unity primarily by attaching what?
A.Layers
B.Tags
C.Scenes
D.Components
Explanation: Unity uses a component-based architecture: a GameObject is essentially a container, and behavior such as rendering, physics, audio, and custom scripts is provided by the Components attached to it.
5A designer wants to test gameplay quickly. Which Editor control runs the scene in Play mode without saving a build?
A.Window > Rendering > Lighting
B.File > Build And Run
C.The Maximize On Play toggle
D.The Play button in the toolbar
Explanation: The Play button at the top of the Editor enters Play mode, executing the scene's scripts and gameplay live. It is the fastest way to iterate, and changes made during Play mode are reverted when you stop.
6What is the purpose of the Game view as distinct from the Scene view in the Unity Editor?
A.The Game view renders what the player sees through the active camera, while the Scene view is for editing
B.The Game view edits assets while the Scene view runs the game
C.Both views are identical and interchangeable
D.The Game view only works after creating a build
Explanation: The Game view shows the rendered output from the in-scene Camera(s) exactly as a player would experience it, including UI. The Scene view is a free editing viewport for arranging and inspecting objects.
7You need two GameObjects to move together so that moving the parent also moves the child. How do you establish this relationship in the Hierarchy?
A.Add both to the same Layer
B.Give both the same Tag
C.Drag the child GameObject onto the parent GameObject
D.Place both on the same sorting layer
Explanation: Parenting is created by dragging one GameObject onto another in the Hierarchy. The child's Transform then becomes relative to the parent, so moving, rotating, or scaling the parent affects the child.
8A team member reports that frame rate drops sharply during gameplay. Which built-in Unity window should you open first to identify where CPU and GPU time is being spent?
A.The Animation window
B.The Lighting window
C.The Profiler window
D.The Package Manager
Explanation: The Profiler records per-frame timing across CPU, GPU, rendering, memory, physics, and scripts. It is the primary tool for diagnosing performance problems and locating spikes or expensive operations.
9Which statement best describes the role of a Scene in Unity?
A.A reusable template asset for a single GameObject
B.A compiled binary of the finished game
C.A container that holds the GameObjects, lighting, and environment for a level or screen
D.A folder on disk that stores scripts
Explanation: A Scene is a Unity asset that stores a self-contained collection of GameObjects together with their settings, lighting, and environment. Games are typically split into multiple scenes such as menus and levels that are loaded as needed.
10You want a single point light to illuminate only objects on a specific Layer and ignore everything else. Which Light property controls this?
A.Render Mode
B.Light Cookie
C.Shadow Type
D.Culling Mask
Explanation: A Light's Culling Mask is a layer mask that restricts which Layers the light affects. Objects on layers excluded from the mask receive no illumination from that light.

About the Unity Certified Associate: Game Developer Exam

The Unity Certified Associate: Game Developer credential validates that you possess job-ready, core Unity skills for entry-level real-time 3D game development. The exam, based on Unity 6, spans 16 domains including Animation, Asset management, Audio, Editor interface, Lighting, Materials and effects, Navigation and pathfinding, Physics, Programming, and User interface, alongside game design and employment-readiness topics. It is a 100-question, 90-minute multiple-choice exam delivered through Pearson VUE either at a test center or online via OnVUE. Earners can confidently iterate with prototypes, debug, and solve programming challenges across both technical art and C# programming.

Questions

100 scored questions

Time Limit

90 minutes

Passing Score

500 out of 700 (scaled)

Exam Fee

$259 (Unity Technologies (delivered by Pearson VUE))

Unity Certified Associate: Game Developer Exam Content Outline

Editor interface domain

Unity Editor environment and essential tools

Navigate the Hierarchy, Inspector, Project, Scene, and Game views; manage scenes, GameObjects, and components; use Move, Rotate, and Scale tools, layers, tags, parenting, Play mode, the Package Manager, and the Profiler.

Asset management domain

Asset management and project architecture

Import and configure textures and models, manage the Assets folder and .meta GUIDs, version control with Library and Temp ignored, build reusable Prefabs and Prefab Variants, and apply ScriptableObjects and Addressables.

Programming domain

C# scripting fundamentals for Unity

Write MonoBehaviour scripts and use the lifecycle (Awake, Start, Update, FixedUpdate, LateUpdate), Time.deltaTime, GetComponent, [SerializeField], coroutines, inheritance, collections such as List<T>, Instantiate and Destroy, and debug with Debug.Log to fix null references.

Animation, Physics, and Navigation domains

Animation and physics

Drive characters with Animator Controllers, parameters, blend trees, and animation events; apply Rigidbody, colliders, triggers, kinematic bodies, physic materials, and raycasts in FixedUpdate; and route agents with NavMesh pathfinding.

Lighting, Audio, and Materials and effects domains

Lighting, audio, and effects

Place directional, point, and spot lights, bake lightmaps and configure real-time shadows, author materials and PBR metallic and smoothness, play sound with Audio Sources, the Audio Mixer, and spatial blend, and build effects with the Particle System.

User interface domain

User interface systems

Build UI on a Canvas with RectTransform anchors and pivots, scale with the Canvas Scaler, route input through the EventSystem, wire Button OnClick and Toggle OnValueChanged UnityEvents, and display values with TextMeshPro.

How to Pass the Unity Certified Associate: Game Developer Exam

What You Need to Know

  • Passing score: 500 out of 700 (scaled)
  • Exam length: 100 questions
  • Time limit: 90 minutes
  • Exam fee: $259

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Unity Certified Associate: Game Developer Study Tips from Top Performers

1Master the MonoBehaviour lifecycle order: Awake and OnEnable, then Start before the first frame, then FixedUpdate for physics, Update each frame, and LateUpdate for camera follow.
2Practice physics rules: apply Rigidbody forces in FixedUpdate, know that collisions need at least one non-kinematic Rigidbody, and that Is Trigger swaps OnCollisionEnter for OnTriggerEnter.
3Be fluent with the Animator: assign an Animator Controller, drive transitions with SetFloat, SetBool, and SetTrigger, blend clips with blend trees, and fire animation events at exact frames.
4Know the asset model: every asset has a .meta file with a GUID, Prefabs and Prefab Variants enable reuse, and Library and Temp folders are regenerated and excluded from version control.
5Drill UI: every UI lives under a Canvas, elements use RectTransform anchors and pivots, the Canvas Scaler handles resolutions, the EventSystem dispatches input, and Buttons use OnClick UnityEvents.
6Understand lighting and audio: choose Directional, Point, or Spot lights, bake static lighting into lightmaps, use real-time or mixed lights for moving shadows, and set Spatial Blend toward 3D for positional sound.

Frequently Asked Questions

What are the current exam facts for the Unity Certified Associate: Game Developer exam?

It is a 100-question, 90-minute multiple-choice exam delivered through Pearson VUE. The voucher costs $259, scores are scaled from 200 to 700, and you need 500 to pass. The exam is based on Unity 6 and the credential is valid for two years.

What topics does the exam cover?

The exam spans 16 domains: Animation, Asset management, Audio, Editor interface, Employment preparedness, Game art principles, Game design principles, Industry awareness, Lighting, Materials and effects, Navigation and pathfinding, Physics, Programming, Project management, Services, and User interface.

What score do I need to pass?

All Unity certification exams use a scaled range of 200 to 700, and the passing score is 500. Any score of 500 or above is a pass. Unity does not report how many individual items you answered correctly.

Is the exam based on a specific Unity version?

Yes. The current Unity Certified Associate exam is based on Unity 6, so candidates should be familiar with the modern Editor, the Universal Render Pipeline, TextMeshPro, and current Prefab and Addressables workflows.

Can I take the exam online?

Yes. Unity's testing partner Pearson VUE offers the exam both at authorized test centers and online through OnVUE proctoring, which requires identity verification and a 360-degree room scan before you begin.

How should I prepare for this exam?

Build at least one complete Unity game and work through Unity Learn's UCA: Game Developer prep course. Be fluent in the MonoBehaviour lifecycle, physics in FixedUpdate, the Animator state machine, lighting, and Canvas UI, then drill practice questions until each workflow feels routine.