How many types of thread in java? give the name
Answer Posted / tadveer
there are two types of thread
1.user thread
2.kernel thread
java works only in user thread , kernel thread handles by OS.
user thread categorized as
1.daemon thread(which are executing in background like Gabage collector,ThreadScheduler)
2.non daemon thread(created by the user)
Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is an immutable object? How do you create one in java?
What is the impact of declaring a method as final?
What are singleton services?
How to convert string to char and vice versa?
Is null in java?
Which is illegal identifier in java?
Can a class extend more than one class?
What is difference between arraylist and list in java?
What is an example of a constant variable?
What is gc()?
Define interface in java?
What is the parse method in java?
what is an objects lock and which objects have locks? : Java thread
What is the use of generics? When was it added to the Java development Kit?
What is the static variable?