In object-oriented programming, what is a CLASS?
- **A)** A synonym for a primitive data type
- **B)** A single specific instance of data stored in memory
- **C)** A blueprint or template that defines the properties (instance variables) and behaviors (methods) that its objects will have
- **D)** A method that returns no value
A class defines the structure and behavior shared by all objects created from it; each individual object is a separate INSTANCE of that class.