I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?
Yes, in Java, you can call one constructor from another constructor in the same class using the `this()` keyword. This is called constructor chaining.