FDM Group Interview Question

What is the difference between an object and a class

Interview Answer

Anonymous

Mar 7, 2019

Class: is a user-defined data type with a set of data members and member functions. Object: Is an instance of a class, which can be created multiple times with different names, and each object can do different methods.

1