How can static methods be accessed from an instance of the class?
Directly using the instance variable name.
Static methods cannot be accessed from an instance.
Through the class name.
Both A and B.