Which statements are true?.
Select the two correct answers.
(b) and (e)
A constructor can be declared private, but this means that this constructor can only be used within the class.
Constructors need not initialize all the fields when a class is instantiated.
A field will be assigned a default value if not explicitly initialized.
A constructor is non-static and, as such, it can directly access both the static and non-static members of the class.