If parent has only <code>Animal(String name)</code> (no no-arg), the subclass
- A
Will compile fine without
- Bcheck_circle
Must call super(name) explicitly
- C
Will throw exception at runtime
- D
Cannot extend
Explanation
Without no-arg parent constructor, subclass must call super(args) explicitly.