GAME DESIGN EOPA 2025/2026 END OF
PATHWAY FINAL EXAM, GAME DESIGN EXAM
QUESTIONS, EOPA 450 QUESTIONS, GAME
DEVELOPMENT ASSESSMENT, PATHWAY
CERTIFICATION GRADE A
To ensure that certain UI canvas appear behind others you need to
change:CORRECT ANSWER✔✔Sort Order
Which of the following audio formats is NOT supported by Unity?CORRECT
ANSWER✔✔MIDI
How many audio listeners can be in a Unity scene?CORRECT
ANSWER✔✔One
Which option begins playing the sound as soon as the GameObject
loads?CORRECT ANSWER✔✔Play On Awake
,4|Page
If you want to ensure that all of your audio has loaded before the scene
starts, leave the "Load in Background" option unchecked. (T/F)CORRECT
ANSWER✔✔True
Which of the following audio load types has a slight overhead of
decompressing on the fly but keeps the memory footprint small?CORRECT
ANSWER✔✔Compressed in Memory
To make a sound play over and over, which of the following needs to be
checked?CORRECT ANSWER✔✔Looping
Audio effects can be applied to gameObjects with audio sources and audio
groups in the audio mixer. (T/F)CORRECT ANSWER✔✔True
To modify the volume of an audio Clip, the clip must be applied to:CORRECT
ANSWER✔✔An AudioSource Component
To simulate the echoing and distortion of a type of sound environment such
as a cave, arena, or forest, which of the following audio components would
be the best option to use?CORRECT ANSWER✔✔Reverb Zone
Audio sources can ONLY be tested in the game view. (True/False)CORRECT
ANSWER✔✔False
What audio effect will allow an audio group to send volume to a different
audio group?CORRECT ANSWER✔✔Send
,5|Page
A programming language is a formal computer language that is used to
communicate instructions to a computing device in order to control the
computer's behavior in some way.CORRECT ANSWER✔✔True
A number of elements in a specific order is:CORRECT ANSWER✔✔an array
A function that contains arithmetic symbols (e.g. +, <, =/) is an
operator.CORRECT ANSWER✔✔True
An instance is:CORRECT ANSWER✔✔a single occurence
A collision volume is called:CORRECT ANSWER✔✔a region
Which of the following is NOT an argument used to determine how a shot is
fired from an object?CORRECT ANSWER✔✔the color of the shot being
instantiated
is similar to a function but has limited calling notation and a
limited number of parameters.CORRECT ANSWER✔✔An operator
An organization of objects that share the same template (that defines the
data they use and what logic affects them) is:CORRECT ANSWER✔✔a class
An invisible object that is used to create a game mechanic is
called:CORRECT ANSWER✔✔a dummy object
, 6|Page
The script to eliminate an object leaving a particular boundary would
contain the following:CORRECT ANSWER✔✔Destroy(other.gameobject)
Selecting "Create Empty" from the GameObject menu will:CORRECT
ANSWER✔✔create an object that is just a transform
Self-contained sequences of actions to be performed are:CORRECT
ANSWER✔✔algorithms
Identifying the objects the code requires and describing how they are
related to each other is:CORRECT ANSWER✔✔data modelling
An arraylist is a fixed-length array.CORRECT ANSWER✔✔False
Which of the following is a common error to look out for when writing
code?CORRECT ANSWER✔✔all of the above
Which of the following is NOT one of the three default components listed in
the Inspector view of a terrain asset?CORRECT ANSWER✔✔Texture
After using a Prefab asset, you need to set the colliders to define the object
as "solid" (impassible).CORRECT ANSWER✔✔False
Orthographic view allows you to see a scene with no perspective
distortion.CORRECT ANSWER✔✔True