Multiple choice technology programming languages

constructors can be overloaded but can't be overridden and constructors cannot be inherited.

  1. True

  2. False

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

In Java, constructors can be overloaded (multiple constructors with different signatures in the same class), but they cannot be overridden because they are not inherited by subclasses.