Tier 1
Series 6
6G: The Communication Exam
Capstone Exam
"The AI has generated a "Communication Hub" that is creating spaghetti dependencies and memory leaks. Identify the three critical failures to restore signal integrity."
Target Asset for Audit
FRAGILE_CODE_DETECTED
public class CommSystem : MonoBehaviour {
// Audit Requirement: Lesson 6A (Hard Dependency)
public HUDManager hud;
public static Action onAlert;
void Start() {
hud.UpdateText("Ready");
}
void OnEnable() {
onAlert += TriggerAlarm;
}
// Audit Requirement: Lesson 6D (Zombie Signal)
// Missing OnDisable!
}