Which of the following statements is/are true?
Select 1 option
Correct Option is : C
A. is wrong. Not if the subclass is also defined abstract!
B. is wrong. Not if the class is defined abstract.
C. is correct. Because constructors are not inherited.
D. and E. are wrong.
Interface cannot "implement" anything.
It can extend multiple interfaces.
The following is a valid declaration:
interface I1 extends I2, I3, I4 { }