Multiple choice technology programming languages

Is JAVA priority preemptive?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Java thread scheduling uses preemptive priority-based scheduling - higher priority threads can preempt lower priority threads. However, this is not guaranteed to be strictly preemptive as JVM implementations may use different scheduling strategies, and thread behavior is platform-dependent.