Certified Associate in Python Programming (PCAP) — Question 3

A variable stored separately in every object is called:

Answer options

Correct answer: D

Explanation

The correct answer is D, an instance variable, which is unique to each object and holds its own value. Options A and B are incorrect because they refer to shared variables across objects, while option C is not a standard term used in object-oriented programming.