I came across the following question:
Which of the following statements are true:
A. A static method may be overriden by a static method.
B. A static method may be overriden by a non-static method
C. A non-static method may be overriden by a static method
D. A non-static method may be overriden by a final non-static method.
The answer is D.
I agree D is true.
But since the only info I leaned about this from the book Im reading is that
"A static method may not be overriden to be non-static " , I could not understand why options
A and C are false.... ???