Daily Archives: January 20, 2018


Scheduling algorithms example

Scheduling Algorithms with Example

 First Come First Serve Algorithm In this algorithm, jobs are executed on the basis of first come and first out. It is easy to understand and implement It’s not having high performance and having high waiting time. Example Shortest Job First (SJF) Shortest job first algorithm is further having two categories i.e. Preemptive and Non-Preemptive. Preemptive SJF in this algorithm when the processes come to...

Read More