Which statements are true?(Choose Three)
moto
(Choose all correct answers)
A constructor can not be overloaded,
In a constructor, you can call a superclass constructor
You can use access modifiers to control which other classes can call the constructo
Since a constructor can not return any value, it should be declared as void.
You can declare more than one constructor in a class declaration
Answers
Answered by
1
Answer:
False: Since a constructor can not return any value, it should be declared as void.
Explanation:
Others are true and this one is false as constructors can return value, on the other hand all are true as constructors return current class instance but constructor doesnt have return value statements.
Similar questions