Unreal Engine Technology & Digital Applications 3 — Questions and Answers
Question 1: What is the purpose of Unreal Engine's 'Sequencer' tool?
- Compiling C++ code
- Creating cinematic cutscenes and timeline-based animations (Correct answer)
- Managing multiplayer sessions
- Building AI behavior trees
Correct answer: Creating cinematic cutscenes and timeline-based animations
Sequencer is UE's non-linear animation editor used to create cinematic cutscenes, camera animations, and timeline-driven gameplay events.
Question 2: Which Unreal Engine component type is responsible for detecting overlaps and collisions without rendering a visible mesh?
- Static Mesh Component
- Collision Box / Collision Shape Component (Correct answer)
- Skeletal Mesh Component
- Billboard Component
Correct answer: Collision Box / Collision Shape Component
Collision shape components (Box, Sphere, Capsule) handle physics and overlap detection invisibly, commonly used as trigger zones or hitboxes.
Question 3: In Unreal Engine, what system is used to create scalable and high-performance visual effects such as fire, smoke, and explosions?
- Cascade
- Niagara (Correct answer)
- MetaSounds
- Control Rig
Correct answer: Niagara
Niagara is UE's modern GPU-accelerated particle system that replaced Cascade, offering greater scalability and programmability for complex visual effects.
Question 4: What does the Unreal Engine 'GameMode' class primarily control in a multiplayer game?
- Player character appearance
- The rules and flow of the game session (Correct answer)
- Rendering quality settings
- Audio mixing
Correct answer: The rules and flow of the game session
GameMode defines the rules of the game including win/loss conditions, player spawning, and which classes to use — it only exists on the server in multiplayer.
Question 5: Which Unreal Engine feature allows procedural content generation directly within the editor using nodes and graphs?
- PCG Framework (Correct answer)
- Blueprint Construction Script
- Data Tables
- Level Streaming
Correct answer: PCG Framework
The Procedural Content Generation (PCG) Framework lets artists create procedural foliage, buildings, and other content using graph-based node networks directly in the editor.
Question 6: What is 'Nanite' in Unreal Engine 5?
- A new audio engine for spatial sound
- A virtualized micropolygon geometry system for rendering high-detail meshes (Correct answer)
- A cloud-based asset streaming service
- A machine learning-based animation tool
Correct answer: A virtualized micropolygon geometry system for rendering high-detail meshes
Nanite is UE5's virtualized geometry system that streams and renders only the triangles and detail visible on screen, eliminating the need for manual LOD creation.
Question 7: In Unreal Engine's networking model, which term refers to copying an Actor from the server to connected clients?
- Spawning
- Replication (Correct answer)
- Streaming
- Instancing
Correct answer: Replication
Replication is UE's system for synchronizing actors, variables, and function calls from the server to clients to maintain a consistent game state across the network.
What is the purpose of Unreal Engine's 'Sequencer' tool?