Multiple choice general knowledge

which of the following is false regarding CONSTRUCTOR

  1. automatically invoked

  2. initialize object after construction

  3. has access specifiers

  4. has atleast void as return type

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Constructors are automatically invoked when an object is created and they initialize the object. They can have access specifiers (public, private, protected). However, constructors have NO return type - not even void - which is what makes option D false.