Tier 1
Series 8
8G: The Circuit Breaker Exam
Capstone Exam
"You have analyzed the wiring. You know that loose connections (Nulls) cause crashes, infinite loops freeze the engine, and spaghetti logic causes confusion. Now, certify your understanding."
Target Asset for Audit
FRAGILE_CODE_DETECTED
// EXAM AUDIT: CRITICAL FAILURE
void Update() {
// 1. Unsafe Access
enemy.Attack();
// 2. Infinite Loop Potential
while(isHit) {
FlashColor();
}
// 3. Spaghetti Nest
if (alive) {
if (ammo > 0) {
Fire();
}
}
}