OOPS
August 29, 2024OOPS
August 29, 2024OOPS
|
Question 144
|
Which of the following is false about abstract classes in java?
|
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
|
|
|
Abstract classes can have constructors.
|
|
|
A class can be made abstract without any abstract method
|
|
|
A class can inherit from multiple abstract classes
|
Question 144 Explanation:
● An abstract class can have an abstract method without body and it can have methods with implementation also.
● Multiple inheritance is not possible with abstract classes.
● Multiple inheritance is not possible with abstract classes.
Correct Answer: D
Question 144 Explanation:
● An abstract class can have an abstract method without body and it can have methods with implementation also.
● Multiple inheritance is not possible with abstract classes.
● Multiple inheritance is not possible with abstract classes.
