Multiple choice technology programming languages

constructors can be abstract, final, native, static, or synchronized.

  1. True

  2. False

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

Constructors cannot be abstract (they must be implemented), static (they operate on instances), or native/synchronized (these modifiers don't apply to constructors). Constructors can be final in some languages to prevent subclassing, but the statement claims all modifiers are valid which is incorrect.