Java Developer

  Home  Computer Programming  Java Developer


“Java Developer Frequently Asked Questions by expert members with experience in Java Developer. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



63 Java Developer Questions And Answers

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

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.

 222 views