Objects
Instances of classes containing specific attribute values and methods for performing actions. Objects represent concrete implementations of abstract class definitions. Each object maintains its own state separate from other objects of the same class. Object creation occurs through constructor calls, allocating memory and initializing attributes.
Real World
In the Instagram app, each user profile is an object of the User class — @zuck and @taylorswift13 share the same structure but hold completely different follower counts, bios, and post histories.
Exam Focus
When asked to 'instantiate', show the constructor call with specific parameter values, not just the class definition.
How well did you know this?