Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
public void MyClass()
public MyClass()
public int MyClass()
public MyClass(int x)
public
private
protected
package
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.
this
object
self
current
final
static
abstract
volatile
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 object reference.
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.
extends
implements
super
default
They can be accessed using class name.