Control Structures

The Multi-Fork

Nested conditions filter data through multiple gates. Watch how the CPU selects the first matching path.

Branch 1: IF score > 80

High Performance

Branch 2: ELSE IF score > 50

Average Performance

Branch 3: ELSE Otherwise

Action Required

if (score > 80) {
alert("Excellent!");
} else if (score > 50) {
alert("Good Job");
} else {
alert("Keep Trying");
}
Ready
Logic Architecture v2.5