What is a Class and Object in C++?
Can we say that a Class is an Object?
A class is a logical construct while object is its physical copy.
A class can be thought of as a mould from which multiple objects are created which appear identical to the class
Objects can be thought of as carbon copies of the class. A perfect example of inheritance principle.
A class can be thought of as a parent of its children - objects