The second difference between a standard and class module is its scope. A standard module’s data exists for the life of the program, while data in a class module exists only for the lifetime of the object. Data in a standard module is always there when the program runs, while the class module’s data is created when the object is created and removed when the object is removed.