Question 3
Not yet
answered
Flag question
Which of the following is FALSE about abstract classes in Java?
a. A class can be made abstract without any abstract method.
O b.
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 the 'abstract' keyword.
O c.
A class can inherit from multiple abstract classes.
O d. Abstract classes can have constructors.