Problem Statement
Which is true of static members versus instance members in a class?
Explanation
Static members belong to the class itself and are shared across all objects; instance members are part of each object’s state and vary from object to object.
