"abstract" keyword can be used with method and class code example
Example 1: Can abstract methods have static keyword
No, abstract method is a method that's meant to be overridden,
only the instance methods can be override
Example 2: is it necessary for abstract class to have abstract method
No, abstract class can have zero abstract methods.