What is a class?
A class is a blueprint for creating objects of a particular type.
What are methods?
Methods are regular functions that are part of a class.
What are attributes?
Attributes are variables that hold data that are part of a class.
What is an object?
An object is a specific instance of a class.
What is inheritance?
Inheritance is the means by which a class can inherit capabilities from another class.
What is composition?
Composition is the means of building complex objects out of other objects.