What are the Object and Class that classes used for?
Answers were Sorted based on User's Feedback
Answer / ashok
Object class is the ultimate super class of all classes in java.It defines maths method which are inherited by all classes in java.
Class class defines the functionality or behaviour for all classes in java that how object of class should behave according to the functionality of that class.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
class is the template for members and methods to get declared
and object is the physical reality for a class and is used
to call the members and methods those are declared inside a
class
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / janet
The Object class is the highest-level class in the Java
class hierarchy.
The Class class is used to represent the classes and
interfaces that are loaded by a Java program.
Is This Answer Correct ? | 2 Yes | 2 No |
What is Exception handling in Java How do you handle run time errors please explain with an example
What are the advantages of functions?
Can an interface implement another interface?
can write code for serialization ?
What is difference between java and java ee?
If an application has multiple classes in it, is it okay to have a main method in more than one class?
When will you define a method as static?
Which keyword specify that a variable is effectively final ?
How are this() and super() used with constructors in java programming?
What is the base class of all exception classes in java?
What are the main uses of the super keyword?
what is difference between front controller and action servlet?