What is thread priority?
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 ? | 30 Yes | 4 No |
Why unicode is important?
What differences exist between iterator and listiterator?
What is java jit compilers?
Can final class have constructor?
What is string syntax?
Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target
In Inheritance if we are implementing Multi level inheritance and all class having same name of variable and now i want to access each class variable and how it is possible?
What is lifetime variable?
What are the drawbacks of singleton class?
How many bytes is string in java?
What is the difference between and ?
what is main purpose of abstract class?