OOPS
August 25, 2024OOPS
August 25, 2024OOPS
|
Question 165
|
Implicit return type of a class constructor is:
|
not of class type itself
|
|
|
class type itself
|
|
|
a destructor of class type
|
|
|
a destructor not of class type
|
Question 165 Explanation:
Implicit return type of a class constructor is class type itself.
Syntax For Constructors:
Access_Modifier No Return_Type Class(…)
Example:
public static main(String [ ]args)
Constructor rules:
1. Constructors are always used with a new.
2. Have the same name as that of Class
3. Does not have a return type
4. Can be Overloaded but not Overridden.
Correct Answer: B
Question 165 Explanation:
Implicit return type of a class constructor is class type itself.
Syntax For Constructors:
Access_Modifier No Return_Type Class(…)
Example:
public static main(String [ ]args)
Constructor rules:
1. Constructors are always used with a new.
2. Have the same name as that of Class
3. Does not have a return type
4. Can be Overloaded but not Overridden.
