Tier 3
Series 200
200G: Automation Qualification
Capstone Exam
"The Flight Computer is stuck. The states are conflicting, the controls are hard-wired, and the dependencies are tangled. Identify the three critical automation failures to certify your status as a Systems Architect."
Target Asset for Audit
FRAGILE_CODE_DETECTED
using UnityEngine;
using UnityEngine.UI;
public class DroneAI : MonoBehaviour {
// Audit Requirement: Lesson 200A (State Conflict)
public bool isIdle;
public bool isPatrol;
// Audit Requirement: Lesson 200C (Tight Coupling)
public Slider healthSlider; // Direct UI Reference
void Update() {
// Audit Requirement: Lesson 200E (Legacy Input)
if (Input.GetKeyDown(KeyCode.L)) {
Land();
}
}
}