Question: Which statement about constructors is not ture?

  1. A class can have multiple constructors with a different parameter list.
  2. You can call another constructor with `this` or `super`.
  3. A constructor does not define a return value.
  4. Every class must explicitly define a constructor without parameters.

Answer: The correct answer of the above question is Option D:Every class must explicitly define a constructor without parameters.