0 votes
in JAVA by

What is the difference between preemptive scheduling and time slicing in Java?

1 Answer

0 votes
by

Under preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. Under time slicing, a task executes for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then determines which task should execute next, based on priority and other factors.

Related questions

+1 vote
asked Apr 15, 2021 in JAVA by SakshiSharma
0 votes
asked Oct 12, 2020 in JAVA by Robindeniel
...