Right choice is (b) className :: staticDataMember;
To explain I would say: For accessing the static data members without using the static member functions, the class name can be used. The class name followed by scope resolution, indicating that static data members is member of this class, and then the data member name.