Multiple choice technology programming languages Which of the following are public, static and final constants of Thread class Thread.MAX_PRIORITY Thread.NORM_PRIORITY Thread.LOW_PRIORITY 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.