Static member functions don't have a 'this' pointer because they are not bound to any object instance - they belong to the class itself. Options A, B, and C are all true: static functions can only access static members, can be called without instantiating the class, and cannot be virtual.