From where do object receive their storage.
Stack memory
Heap memory
Hash memory
Queue
Which of the following is done by the new operator to instantiate a class?
Allocating memory for a new object
Deallocating memory for a new object
Reallocating memory for a new object
Creating a new object
Which of the following is a part of object declaration statement?
Declaration
Instantiation
Initialization
all of these.
Which of the following can be a constructor's name?
Object name
Method name
Variable name
Class name
Which operator is used to return a reference to an object?
New operator
Conditional operator
Dot operator
Assignment operator
Which of the following does the availability of user defined data type depends upon?
Scope
Class
Method
Object
Which of the following is not an access specifier?
Private
void
protected
default
Which of the following is an example of composite datatype?
object
variable
class
method
Which of the following operator is used to create objects along with the class constructor?
Arithmetic operator
Dot operator(.)
Which of the following type of members can be accessed inside the same package or outside the package if the class is accessible?
private
public