what is Thread priority?
Answers were Sorted based on User's Feedback
Answer / malligontla
By default, the priority of Thread is 5. But the range is
from 1 to 10.
MAX_PRIORITY (value 10)
NORM_PRIORITY (value 5)
MIN_PRIORITY (value 1)
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / mamatha
Thread scheduler uses the thread priorities in the form of integer value to each of its thread to determine the execution schedule of threads .
Thread gets the ready-to-run state according to their priorities.
Priorities are integer values from 1 (lowest priority given by the constant Thread.MIN_PRIORITY) to 10 (highest priority given by the constant Thread.MAX_PRIORITY).
The default priority is 5(Thread.NORM_PRIORITY).
| Is This Answer Correct ? | 10 Yes | 0 No |
When we r go to abstract class and when we go to Interface? i have confusion this question while in interview plz clarify
What are access modifiers?
What do you mean by thread safe?
What is default constructors?
Program to print 1 1 2 1 2 3 1 2 3 4 like that
What is the life-cycle of an object?
What are the super most classes for all the streams?
What is the meaning of immutable regarding string?
Write a program to calculate factorial in java?
What is the default value of the local variables?
Does constructor be static?
What is a numeric digit?