What is the root class for all Java classes?

Answers were Sorted based on User's Feedback



What is the root class for all Java classes?..

Answer / ranganathkini

java.lang.Object

Is This Answer Correct ?    55 Yes 7 No

What is the root class for all Java classes?..

Answer / ravikiran

Object class

Is This Answer Correct ?    47 Yes 4 No

What is the root class for all Java classes?..

Answer / alfred

object class

Is This Answer Correct ?    22 Yes 3 No

What is the root class for all Java classes?..

Answer / keerthi

Any class that is written in java is aby default sub class to object class

Is This Answer Correct ?    19 Yes 2 No

What is the root class for all Java classes?..

Answer / durgesh singh

Object class is the root class in java

Is This Answer Correct ?    12 Yes 0 No

What is the root class for all Java classes?..

Answer / srinivas

object class is the root class for all java classes

Is This Answer Correct ?    7 Yes 1 No

What is the root class for all Java classes?..

Answer / pacs

Object is the root class for all java classes.

Is This Answer Correct ?    5 Yes 1 No

What is the root class for all Java classes?..

Answer / bharath kumar indla

The Object class, in the java.lang package, sits at the top of the class hierarchy tree. Every class is a descendant, direct or indirect, of the Object class.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is thread synchronization in java?

0 Answers  


class a extends b { } class b extends a { } why java doesn't support cyclic pls explain me with example

3 Answers   Wipro,


how a programmer confirms that the data submitted has been succesfully inserted into the database(either oracle or my sql).. How a programmer confirm if there is any problem with the program he wrote for insertion

2 Answers   SAP Labs,


What are different types of access modifiers?

3 Answers  


Can we overload final method in java?

0 Answers  


What is finally in Java?

0 Answers  


Is a class an object?

0 Answers  


What does @override mean?

0 Answers  


How to make a write-only class in java?

0 Answers  


What is JFC?

0 Answers  


How do you create an array in java?

0 Answers  


10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;

2 Answers  


Categories