Tier 2
Series 102
102G: The Inspector Exam
Capstone Exam
"The Flight Computer is throwing errors. The navigation system is null, the thrusters are undocumented, and the dependency wiring is exposed. Identify the three critical failures to certify your status as a Flight Engineer II."
Target Asset for Audit
FRAGILE_CODE_DETECTED
using UnityEngine;
using UnityEngine.UI;
public class FlightComputer : MonoBehaviour {
// Audit Requirement: Lesson 102F (Documentation)
public float thrust;
// Audit Requirement: Lesson 102B (Null Safety)
public Text statusDisplay;
void Update() {
// Audit Requirement: Lesson 102C (String Safety)
statusDisplay.text = "Thrust: " + thrust;
}
}