InterviewSolution
Saved Bookmarks
| 1. |
Why is an object called an instance of a class ? |
|
Answer» An object is a software bundle of related state and behavior. A class is a blueprint or prototype from which objects are created. An instance is a single and unique unit of a class. |
|