It is possible to create abstract class without any abstract methods
Answers
Answered by
2
Answer:
Yes we can have an abstract class without Abstract Methods as both are independent concepts. Declaring a class abstract means that it can not be instantiated on its own and can only be sub classed. Declaring a method abstract means that Method will be defined in the subclass
Similar questions