



















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
ALBERTA UNITY DEVELOPER EXAM QUESTIONS AND CORRECT ANSWER (VERIFIED ANSWERS) PLUS RATIONALE 2026 Q&A|INSTANT DOWNLOAD PDF
Typology: Exams
1 / 27
This page cannot be seen from the preview
Don't miss anything!




















1. What programming language is primarily used in Unity? A. C++ B. Java C. C# D. Python Answer: C C# is the main scripting language used in Unity. 2. What is a GameObject? A. Script B. Base object in Unity C. API D. UI Answer: B GameObjects are the fundamental objects in a Unity scene. 3. What is a Component? A. UI B. Behavior attached to GameObject C. Database D. API Answer: B Components define functionality like rendering or physics. 4. What is a Transform component?
B. Position, rotation, scale C. Database D. API Answer: B Every GameObject has a Transform defining its spatial properties.
5. What is a prefab? A. Script B. Reusable GameObject template C. API D. UI Answer: B Prefabs allow reuse and instantiation of objects. 6. What is a scene? A. Script B. Level/environment C. API D. UI Answer: B A scene contains all GameObjects in a level. 7. What is MonoBehaviour? A. UI B. Base class for scripts C. Database D. API Answer: B All Unity scripts derive from MonoBehaviour.
12. What is Collider? A. UI B. Collision detection C. Database D. API Answer: B Defines physical boundaries. 13. What is trigger collider? A. UI B. Detect overlap only C. Database D. API Answer: B Detects collision without physical response. 14. What is OnCollisionEnter()? A. UI B. Collision event C. Database D. API Answer: B Triggered when collision occurs. 15. What is OnTriggerEnter()? A. UI B. Trigger event C. Database D. API
Answer: B Called when entering trigger zone.
16. What is Time.deltaTime? A. UI B. Frame time C. Database D. API Answer: B Ensures smooth movement across frames. 17. What is Vector3? A. UI B. 3D vector C. Database D. API Answer: B Represents positions and directions. 18. What is Quaternion? A. UI B. Rotation type C. Database D. API Answer: B Used for smooth 3D rotations. 19. What is Camera component? A. UI B. View renderer
B. Navigation system C. Database D. API Answer: B Used for AI pathfinding.
24. What is NavMeshAgent? A. UI B. AI movement C. Database D. API Answer: B Moves objects along NavMesh. 25. What is Raycast? A. UI B. Line detection C. Database D. API Answer: B Used for shooting, selection, etc. 26. What is UI Canvas? A. UI B. Container for UI C. Database D. API Answer: B Holds UI elements.
27. What is Button component? A. UI B. Interactive element C. Database D. API Answer: B Handles user clicks. 28. What is TextMeshPro? A. UI B. Text system C. Database D. API Answer: B Improved text rendering. 29. What is ScriptableObject? A. UI B. Data container C. Database D. API Answer: B Stores reusable data. 30. What is coroutine? A. UI B. Async function C. Database D. API Answer: B Allows delayed execution.
Answer: B Deletes GameObjects.
35. What is tag in Unity? A. UI B. Label object C. Database D. API Answer: B Used to identify GameObjects. 36. What is layer? A. UI B. Grouping system C. Database D. API Answer: B Used for collision and rendering rules. 37. What is build settings? A. UI B. Configure build C. Database D. API Answer: B Defines platform and scenes. 38. What is player settings? A. UI B. App configuration
C. Database D. API Answer: B Controls app metadata and behavior.
39. What is physics material? A. UI B. Surface properties C. Database D. API Answer: B Controls friction and bounciness. 40. What is audio source? A. UI B. Sound player C. Database D. API Answer: B Plays audio in scene. 41. What is audio listener? A. UI B. Receives sound C. Database D. API Answer: B Usually attached to camera. 42. What is particle system?
46. What is batching? A. UI B. Combine draw calls C. Database D. API Answer: B Improves rendering performance. 47. What is profiler? A. UI B. Performance tool C. Database D. API Answer: B Analyzes CPU, GPU usage. 48. What is build pipeline? A. UI B. Compile process C. Database D. API Answer: B Creates executable builds. 49. What is cross-platform in Unity? A. UI B. Multi-platform support C. Database D. API Answer: B Unity supports many platforms.
50. What is asset store? A. UI B. Resource marketplace C. Database D. API Answer: B Provides assets and tools. 51. What is Script Execution Order? A. UI order B. Control script timing C. Database D. API Answer: B Defines the order in which scripts run. 52. What is LateUpdate()? A. Before Update B. After Update C. Physics D. Destroy Answer: B Runs after all Update() calls, useful for camera follow. 53. What is Awake()? A. After Start B. Initialization before Start C. Physics D. Destroy Answer: B Called when the script instance is loaded.
Answer: B Manages scene loading and transitions.
58. What is LoadScene()? A. UI B. Load new scene C. Database D. API Answer: B Switches between scenes. 59. What is additive scene loading? A. UI B. Load multiple scenes C. Database D. API Answer: B Allows combining scenes together. 60. What is Physics.Raycast()? A. UI B. Detect objects C. Database D. API Answer: B Used for shooting, selection, etc. 61. What is LayerMask? A. UI B. Filter layers
C. Database D. API Answer: B Limits raycasts or collisions to certain layers.
62. What is Debug.Log()? A. UI B. Print message C. Database D. API Answer: B Outputs messages to console. 63. What is Gizmos? A. UI B. Debug visuals C. Database D. API Answer: B Draws debug shapes in editor. 64. What is Editor scripting? A. UI B. Custom tools C. Database D. API Answer: B Extends Unity editor functionality. 65. What is Custom Inspector?
69. What is Shader Graph? A. UI B. Visual shader editor C. Database D. API Answer: B Creates shaders without coding. 70. What is material? A. UI B. Visual surface data C. Database D. API Answer: B Defines how objects look. 71. What is light baking? A. UI B. Precompute lighting C. Database D. API Answer: B Improves performance by baking lighting. 72. What is reflection probe? A. UI B. Reflection data C. Database D. API Answer: B Simulates reflections.
73. What is post-processing? A. UI B. Visual effects C. Database D. API Answer: B Applies effects like bloom, color grading. 74. What is bloom? A. UI B. Glow effect C. Database D. API Answer: B Makes bright areas glow. 75. What is VSync? A. UI B. Sync FPS C. Database D. API Answer: B Prevents screen tearing. 76. What is Application.targetFrameRate? A. UI B. Set FPS C. Database D. API