Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
They are created when an object is created.
They are stored in the heap memory.
They are shared among all objects of a class.
They can be accessed using class name.
It allows a subclass to provide its own implementation of a method in the superclass.
It allows a superclass to provide its own implementation of a method in the subclass.
It allows a method to have the same name but different signature as another method in the same class.
It allows a method to have a different name but same signature as another method in the same class.
They can have instance variables.
They can be instantiated.
They can have both abstract and non-abstract methods.
They can have constructors.
Default constructor
Parameterized constructor
Private constructor
Copy constructor
toString()
hashCode()
equals()
compareTo()
It refers to the superclass of the current class.
It refers to the subclass of the current class.
It refers to the current object.
It refers to the current class.
They can be accessed using object reference.
Variables
Methods
Constructors
Functions
It allows the state of an object to be accessed directly.
It allows the state of an object to be accessed only through methods.
It allows the state of an object to be accessed only through variables.
It allows the state of an object to be accessed through both variables and methods.
They can contain abstract methods.
They cannot contain concrete methods.
They cannot be inherited.