1).Is Object class abstract or not?
2).Is main method(public static void main(String args[])low
priority thread or high priority thread?

Answers were Sorted based on User's Feedback



1).Is Object class abstract or not? 2).Is main method(public static void main(String args[])low p..

Answer / p.sreekiran

Object is a class not an abstract class
main method is heigh priority thread

Is This Answer Correct ?    12 Yes 2 No

1).Is Object class abstract or not? 2).Is main method(public static void main(String args[])low p..

Answer / s.ramesh

1. Object class is not abstract

2. main method (public static void main(String args[])is
Mormal Priority thread until we set priority..

normally it priority value is 5

Is This Answer Correct ?    9 Yes 1 No

1).Is Object class abstract or not? 2).Is main method(public static void main(String args[])low p..

Answer / harinath.b (sai sudhir p.g co

1) Object class is not an abstract class.The default
implementation is provided by javasoft.If we want we can
override the methods of Object class.
Ex class Top extends Object{
public String toString()
{
return "Java is ruling the WEB";
}
}

2)main() method is having the normal priority.To see how
it is :

class MainPriority{
public static void main(String main[]){
System.out.println("Main priority is
:"+Thread.currentThread().getPriority());
}
}

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

How to make a class immutable?

15 Answers   Bosch, TSYS,


what is wrapper class and its uses?

2 Answers  


what are the purposes of native, transiant key words?

2 Answers  


what is abstract class in Java?

0 Answers   Hexaware, Syntel,


What does opcode mean?

0 Answers  






we cannot create an object of interface but we can create a variable of it

1 Answers  


What is difference between hash mapping and hash table?

5 Answers   NDS, Wipro,


Define an applet in java?

0 Answers  


Is namespace same as package in java?

0 Answers  


Is 0 an irrational number?

0 Answers  


Is 'null' a keyword?

8 Answers  


What is the importance of static variable?

0 Answers  


Categories