┌─────────────────────────────┐
│ Multilevel Queue │
├─────────────┬───────────────┤
│ High Priority Queue │
│ (e.g., system processes) │
│ Scheduling: Round Robin │
├─────────────┴───────────────┤
│ Medium Priority Queue │
│ (e.g., interactive tasks) │
│ Scheduling: First-Come-First-Served │
├─────────────┬───────────────┤
│ Low Priority Queue │
│ (e.g., batch jobs) │
│ Scheduling: FCFS or others │
└─────────────────────────────┘
Scheduler picks from top queue first, moves down only if empty.
This diagram shows three separate queues with different priorities and scheduling methods, illustrating how the scheduler picks from the highest priority queue first.