Java Developer Question:
Download Questions PDF

Can you please explain the difference between preemptive scheduling and time slicing in Java Programming?

Answer:

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.

Download Java Developer Interview Questions And Answers PDF

Previous QuestionNext Question
What happens when a thread cannot acquire lock on an object in Java Programming?Which classes of exceptions may be caught by a catch clause in Java Programming?