Multiple choice technology programming languages

Which of the following are public, static and final constants of Thread class

  1. Thread.MAX_PRIORITY

  2. Thread.NORM_PRIORITY

  3. Thread.LOW_PRIORITY

  4. Thread.MIN_PRIORITY

Reveal answer Fill a bubble to check yourself
A,B,D Correct answer
Explanation

Thread defines three priority constants: MAX_PRIORITY (10), MIN_PRIORITY (1), and NORM_PRIORITY (5). LOW_PRIORITY doesn't exist - it's a distractor mixing 'LOW' with the correct constant name MIN_PRIORITY.