Home » JAVA Programming » Abstraction » Question
  1. Which of these is not a correct statement?
    1. Abstract class can be inherited
    2. Every class containing abstract method must be declared abstract
    3. Abstract class defines only the structure of the class not its implementation
    4. Abstract class can be initiated by new operator
    5. 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.



Your comments will be displayed only after manual approval.