Home
Previous | Next

CPU Scheduling - Quiz

1) Which one is not one of the Scheduling algorithms mentioned earlier.
a) First-Come First-Serve
b) Round Bear
c) Shortest Job First

2) Using the FCFS algorithm, which process is allocated the CPU first?
a) The process that requests the CPU first.
b) The process that requests the CPU last.
c) Processes are allocated the CPU randomly.

3) Using the SJF algorithm, which process is allocated the CPU first?
a) The process that requests the CPU first.
b) The process that requests the CPU last.
c) The process with the smallest CPU execution time.

4) The SJF algorithm is not fair for which type of job?
a) Small jobs.
b) Any size job.
c) Large jobs.