What CPU scheduling algorithm allocates time slices (quanta) to each process in a cyclic order without priority?
AFirst-Come, First-Served (FCFS)
BShortest Job First (SJF)
CRound Robin (RR)
DPriority Scheduling
Explanation
Round Robin (RR) is a preemptive scheduling algorithm designed for time-sharing systems. Each process is assigned a fixed time slot called a Time Quantum. It avoids process starvation.
Exam Relevance
- Topic: Operating Systems
- Subtopic: CPU Scheduling

No Comments