Multiple choice technology programming languages

Which algorithm is used in thread scheduling?

  1. Fixed Priority

  2. Round Robin

  3. Discrete Optimization

  4. None of the above

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

Java threads use priority-based scheduling where each thread has a priority level (1-10). The JVM scheduler attempts to run higher-priority threads before lower-priority ones, though the exact mapping to OS-level scheduling is platform-dependent and implementation-specific.