The relationship between a class and an object is best described as


The relationship between a class and an object is best described as


a) classes are instances of objects

b) objects are instances of classes

c) objects and classes are the same thing

d) classes are programs while objects are variables

e) objects are the instance data of classes

Answer: b. Classes are definitions of program entities that represent classes of things/entities in the world. Class definitions include instance data and methods. To use a class, it is instantiated. These instances are known as objects. So, objects are instances of classes. Program code directly interacts with objects, not classes.