____ belong to a class and exist as a single copy.

____ belong to a class and exist as a single copy. Correct Answer Class variables

Class variables belong to a class and exist as a single copy. Instance variables belong to individual objects. Instance variables exists as many copies. Each copy is paired with a separate object. Member variables include class variables and instance variables.

Related Questions