-
Which of these is not a correct statement?
-
- Abstract class can be inherited
- Every class containing abstract method must be declared abstract
- Abstract class defines only the structure of the class not its implementation
- Abstract class can be initiated by new operator
- None of these
Correct Option: D
Abstract class cannot be directly initiated with new operator, Since abstract class does not contain any definition of implementation it is not possible to create an abstract object.