Method:A method is a function associated with an object or class. It defines behaviors or actions that an object can perform.
Attribute/Property: An attribute (or property) represents data associated with an object. In this case, "color" would be one of several attributes/properties for a Car object.
Parameter:A parameter is information passed into a method when it's called. In this case, when calling the setColor method, you would provide the desired color as a parameter to specify what color you want your car to be.