Question: If a class has one or more secondary constructors, what must each of them do?
- Each secondary constructor must call super().
- Each secondary constructor must call base().
- Each secondary constructor must directly or indirectly delegate to the primary.
- Each secondary constructor must have the same name as the class.
Answer: The correct answer of the above question is Option C:Each secondary constructor must directly or indirectly delegate to the primary.