Multiple choice technology programming languages

Abstract class's can have a constructor.

  1. True

  2. False

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

Abstract classes in Java CAN have constructors. While they cannot be instantiated directly, their constructors are called when a subclass is instantiated using super(). This allows initialization of inherited fields and setup logic.