Multiple choice technology programming languages

Can you call one constructor from another if a class has multiple constructors

  1. True

  2. False

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

Java allows constructor chaining using this() for same-class constructors or super() for parent class constructors. This prevents code duplication and ensures common initialization is performed consistently. The claimed answer True is correct.