Question:

Which CPU scheduling algorithm uses time quantum for processes?

Show Hint

Round Robin is the most common preemptive scheduling algorithm used in time-sharing operating systems.
Updated On: Jun 25, 2026
  • Shortest Job First
  • First Come First Serve
  • Round Robin
  • Shortest Remaining Job Next
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Concept: CPU scheduling determines how CPU time is allocated among processes. Round Robin scheduling is specifically designed for time-sharing systems.

Step 1:
Understand time quantum.
A time quantum is a fixed amount of CPU time assigned to a process. After the quantum expires, the process is preempted.

Step 2:
Working of Round Robin.
Processes are arranged in a circular queue. Each process receives CPU time for one quantum. If unfinished, it moves to the end of the queue.

Step 3:
Identify the scheduling algorithm.
The scheduling algorithm based on time quantum is \[ \boxed{\text{Round Robin}} \]
Was this answer helpful?
0
0