An Accessors just returns value of one of the member variables . It is a member function that accesses the contents of the object but does not modify the objects.
A Mutator just assign a new value to one of the member variable. It is a member function that can modify an object.
Every non-const member function are mutator.