retagged by
33,506 views
2 votes
2 votes

Which of the following is false about abstract classes in Java?

  1. If we derive an abstract class and do not implement all the abstract methods, then the derived class should also be marked as abstract using 'abstract' keyword.
  2. Abstract classes can have constructors.
  3. A class can be made abstract without any abstract method.
  4. A class can inherit from multiple abstract classes.
retagged by

1 Answer

Answer:

Related questions