1).Is Object class abstract or not?
2).Is main method(public static void main(String args[])low
priority thread or high priority thread?
Answer Posted / p.sreekiran
Object is a class not an abstract class
main method is heigh priority thread
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
What is a null class?
What are the differences between wait() and sleep()?
What is difference between overloading and overriding in java?
What is class and object in java?
What is the difference between JDK and JVM?
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
what is mutual exclusion? : Java thread
Why singleton pattern is better than creating singleton class with static instance?
What is an array length?
What is a newline character in java?
What is an array in java?
What is boolean strategy?
Write a program to find the greatest of three numbers in java?
What is the length of a string?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?