1.

What Is The Difference Between Pre Emptive Scheduling And Time Slicing?

Answer»
  • In Preemptive scheduling, HIGHEST priority task will executes until it enters in waiting or dead states. It also executes, until a higher priority task enters.
  • In Time SLICING, a task will execute for a fixed time slice and after that it will GO in READY state.
  • At that time the scheduler will find the EXECUTABLE task, according to the priority and various other tasks.
  • In preemptive scheduling, the running task will be preempted by the higher priority task.
  • In time slicing methods, a task executes until the specified period of time. Once the execution of that task is complete then the higher priority task will be executed if available.



Discussion

No Comment Found