Examveda
Examveda

The implicit return type of a constructor is

A. void

B. A class object in which it is defined.

C. There is no return type.

D. None of the above

Answer: Option B


This Question Belongs to Java Program >> Constructors And Methods

Join The Discussion

Comments ( 2 )

  1. Swapnali Chavan
    Swapnali Chavan :
    4 years ago

    The Implicit return type of constructor is void.
    Because if we write "return value;" in constructor then it will throw compile time error ,and this statement is not allowed in only void .

  2. Nitin Thakur
    Nitin Thakur :
    7 years ago

    Examveda team please check.There is no return type of a constructor as it is not a method.Not even null.

Related Questions on Constructors and Methods

What is a constructor in Java?

A. A special method to create instances of classes

B. A method used for mathematical calculations

C. A method to perform string manipulations

D. An exception handling mechanism