Yes, using `this()`. Frame the concept in practical terms so you can explain it during interview discussion.
Constructor chaining in the same class is done using `this()`, allowing shared initialization logic. This reduces code duplication. For example, an Account class might have a default constructor for standard setups and another that sets an initial balance, both of which can share common initialization logic.
Additional Notes
Can a constructor call another constructor in the same class?