Answers
Which Unity window contains a list of all the game objects currently
in your scene? -
correct answer ✅Hierarchy
What is a possible value for the following variable? -
correct answer ✅0.52
What programming language is mostly used with Unity? -
correct answer ✅C#
Read the documentation from the Unity Scripting API below. Which
of the following is a correct use of the InvokeRepeating method? -
correct answer ✅InvokeRepeating("Spawn", 0.5f, 1.0f);
Read the documentation from the Unity Scripting API and the code
below. Which of the following are possible values for the
randomFloat and randomInt variables? -
correct answer ✅randomFloat = 100.0f; randomInt = 0;
Which of the following lines of code a,b,c, or d are written using
standard Unity naming conventions (rules)? -
correct answer ✅public float speed = 40.0f;