Oh I see. Thx for Everybody. Let me summerize as follows:
Question 54 from JvalTest:
Which of the following is true about static modifier.
A. static can be applied to : instance variables, methods, code Segments and classes
B. a static method cannot be overridden.
C. inner classes can be both static & private.
D. a static reference cannot be made through non static method or code block
E. abstract & static both can be applied together to a method.
A is wrong because static can't be applied to classes
B is correct because you can only hide but not override a static method
C is correct because there's nested class
D is correct because of the
word 'MADE'
E is wrong because abstract and static cannot be used together.