Given a class named MyClass, which of these would be valid definitions for the constructors for the class?
Select 1 option
Correct Option is : A
For Option A.
The constructor can take the same type as a parameter.
For Option B.
A constructor cannot return anything.
For Option C.
A constructor cannot be final, static or abstract.
For Option D.
A constructor cannot return anything not even void.
For Option E.
A constructor cannot be final, static or abstract.