public class MyClass{ }
For the above class(MyClass) what is the correct way of declaring constructor?
public class MyClass{ }A. MyClass(){}
B. MyClass(void) {}
C. public MyClass(){}
D. public MyClass(void){}
E. 1 and 3
Answer: Option E
Solution (By Examveda Team)
Choice A,C are the correct answers.
The default access specifier for any constructor is same as the access specifier of class.so the options A and C are correct.

Join The Discussion