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

Constructor chaining allows calling one constructor from another using the this() keyword in C# or similar syntax in other languages. This avoids code duplication when initializing objects through different constructor overloads.