Abstract method can a have the static qualifier
B
Correct answer
Explanation
Abstract methods cannot be static because abstract methods are designed to be overridden in subclasses, while static methods belong to the class itself and are not inherited for overriding. Making a method both abstract and static would be a contradiction in terms.