InterviewSolution
Saved Bookmarks
| 1. |
Briefly discuss the classes and objects. |
|
Answer» A class is a definition of an object. It is data type just like int. A class is a type, and an object of this class is just like a variable. In other words, class is a blue print and object can be considered as any real time entity (existing thing) that can perform a set of related activities. |
|