A static member of a class MyClass ... A. can be modified by an instance method (if it is not final). B. must never be final. C. must be final. D. can be modified directly by the client multiple times in one program (if it is final and it is public) using an assignment statement of the form MyClass.statMember = someValue; E. can be modified directly by the client (if it is not final and it is public) using an assignment statement of the form MyClass.statMember = someValue; F. can be modified by a static method (if it is not final).