Revature Interview Question

What is the relationship between a class and an object?

Interview Answer

Anonymous

Dec 10, 2020

class: a class describes the contents of the objects that belong to it: it describes an aggregate of data fields (called instance variables), and defines the operations (called methods). object: an object is an element (or instance) of a class; objects have the behaviors of their class. The object is the actual component of programs, while the class specifies how instances are created and how they behave.

6