Unreal Engine Technology & Digital Applications 4 — Questions and Answers
Question 1: Which Unreal Engine editor panel displays the hierarchy of all Actors currently placed in the active level?
- Content Browser
- World Outliner (Correct answer)
- Details Panel
- Blueprint Editor
Correct answer: World Outliner
The World Outliner shows a hierarchical list of all actors in the current level, allowing you to select, organize, and manage scene objects.
Question 2: What is a 'Data Table' asset used for in Unreal Engine?
- Storing GPU shader code
- Storing structured row-based data such as item stats or dialog lines (Correct answer)
- Defining animation state machines
- Managing network replication rules
Correct answer: Storing structured row-based data such as item stats or dialog lines
Data Tables store spreadsheet-like structured data (defined by a UStruct row type) that can be read at runtime, commonly used for RPG item stats, localization strings, or configuration values.
Question 3: In Unreal Engine's animation system, what is a 'Blend Space' used for?
- Mixing audio tracks
- Blending between multiple animations based on one or two input parameters (Correct answer)
- Defining ragdoll physics
- Controlling texture LODs
Correct answer: Blending between multiple animations based on one or two input parameters
A Blend Space blends between multiple animation sequences based on input values (like speed and direction), enabling smooth transitions such as walk-to-run or aim offsets.
Question 4: Which Unreal Engine feature provides a node-based workflow for creating interactive audio with real-time modulation and procedural sound design?
- Sound Cues
- MetaSounds (Correct answer)
- Audio Mixer
- Wwise Integration
Correct answer: MetaSounds
MetaSounds is UE5's next-generation audio system that treats audio as a fully programmable DSP graph, enabling complex procedural sound design and real-time modulation.
Question 5: What does 'RHI' stand for in Unreal Engine's rendering architecture?
- Render Hardware Interface (Correct answer)
- Real-time High-fidelity Imaging
- Rasterized High-detail Illumination
- Render History Index
Correct answer: Render Hardware Interface
The Render Hardware Interface (RHI) is UE's abstraction layer that allows the engine to target multiple graphics APIs (DirectX, Vulkan, Metal) with the same rendering code.
Question 6: In Unreal Engine, what is the role of the 'PlayerController' class?
- Managing game session rules
- Representing the player's input and possessing a Pawn to control (Correct answer)
- Rendering the player's HUD elements
- Handling AI pathfinding
Correct answer: Representing the player's input and possessing a Pawn to control
PlayerController represents a human player's interface to the game, receiving input and possessing a Pawn or Character to physically exist in the world.
Question 7: Which Unreal Engine tool allows you to visually edit and preview material parameter changes on meshes in real time within the editor?
- Material Editor
- Texture Editor
- Shader Compiler
- Material Instance Editor (Correct answer)
Correct answer: Material Instance Editor
The Material Instance Editor lets you override specific parameters of a parent Material in real time without recompiling shaders, enabling fast iteration on surface variations.
Which Unreal Engine editor panel displays the hierarchy of all Actors currently placed in the active level?