Use of Abstract Keyword in Java like Abstract Class
Hi friends, today we will discuss another important keyword of Java called Abstract keyword. Note down this important points of the Abstract keyword
Abstract class acts as a base class for other classes of same type.
Abstract class can’t be instantiated.
There can be any abstract class without any abstract method but vice versa is not possible.
If we [...]