Question:easy

In the first come first service (FCFS) scheduling algorithm, which process is executed first?

Show Hint

FCFS scheduling is based entirely on the chronological arrival sequence: First to Arrive = First to be Processed.
Updated On: Jul 4, 2026
  • The process with the shortest burst time
  • The process that arrives first
  • The process with the highest priority
  • The process with the longest burst time
Show Solution

The Correct Option is B

Solution and Explanation

FCFS simply copies the idea of a normal queue at a counter, whoever reaches the queue first gets served first. It does not look at how long a job will take or how important it is, it only checks the order in which requests arrived. So among the given choices, burst time and priority are irrelevant to this rule, and the process picked for execution is always the one that arrived earliest, which is option 2.
Was this answer helpful?
0