0
0
Unityframework~20 mins

Obstacle avoidance in Unity - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Obstacle Avoidance Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
What is the output of this obstacle detection code?
Consider the following Unity C# script snippet that uses a Raycast to detect obstacles in front of a moving object. What will be printed to the console if there is an obstacle 3 units ahead?
Unity
void Update() {
    if (Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, 5f)) {
        Debug.Log($"Obstacle detected at distance: {hit.distance}");
    } else {
        Debug.Log("No obstacle detected");
    }
}
ANullReferenceException at runtime
BNo obstacle detected
CObstacle detected at distance: 5
DObstacle detected at distance: 3
Attempts:
2 left
💡 Hint
The Raycast checks for obstacles up to 5 units ahead and returns the closest hit distance.
🧠 Conceptual
intermediate
1:30remaining
Which method best describes obstacle avoidance behavior in Unity?
In Unity, which approach is commonly used to make a character avoid obstacles while moving forward?
AUsing Raycasts to detect obstacles and steering away from them
BIgnoring obstacles and moving through them
CUsing OnCollisionEnter to stop movement permanently
DUsing Update() to teleport the character randomly
Attempts:
2 left
💡 Hint
Think about how to detect obstacles before hitting them and change direction.
🔧 Debug
advanced
2:30remaining
Why does this obstacle avoidance script fail to detect obstacles?
This Unity script is intended to detect obstacles and stop the character, but it never detects anything. What is the cause?
Unity
void Update() {
    if (Physics.Raycast(transform.position, Vector3.up, out RaycastHit hit, 5f)) {
        Debug.Log("Obstacle detected");
    }
}
AThe Raycast direction is upwards, so it misses obstacles in front
BThe Raycast distance is too short to detect obstacles
CPhysics.Raycast requires a collider on the player object
DThe RaycastHit variable is not declared correctly
Attempts:
2 left
💡 Hint
Check the direction vector used in the Raycast.
📝 Syntax
advanced
2:00remaining
Identify the syntax error in this obstacle avoidance code snippet
Which option contains the correct syntax to perform a Raycast and check if it hits an obstacle within 10 units?
Unity
if (Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, 10f)) {
    Debug.Log("Hit detected");
}
Aif (Physics.Raycast(transform.position, transform.forward, out RaycastHit hit)) { Debug.Log("Hit detected"); }
Bif (Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, 10f)) { Debug.Log("Hit detected"); }
Cif (Physics.Raycast(transform.position, transform.forward, out hit, 10f)) { Debug.Log("Hit detected"); }
Dif (Physics.Raycast(transform.position, transform.forward, RaycastHit hit, 10f)) { Debug.Log("Hit detected"); }
Attempts:
2 left
💡 Hint
The 'out' keyword must be used with variable declaration inside the method call.
🚀 Application
expert
3:00remaining
What is the final position of the character after this obstacle avoidance logic runs?
A character starts at position (0,0,0) facing forward (z+). It moves forward 5 units unless an obstacle is detected within 3 units. If an obstacle is detected, it turns right 90 degrees and moves forward 2 units. There is an obstacle at (0,0,2). What is the character's final position after running this logic once?
A(0, 0, 2)
B(0, 0, 5)
C(2, 0, 0)
D(0, 0, 0)
Attempts:
2 left
💡 Hint
The obstacle is closer than 3 units ahead, so the character turns right and moves 2 units on x axis.