Method:A function or behavior associated with an object's class that performs certain actions on the object.
Attribute (setter): A method used to modify or update the value of an attribute in an object. The setAddress method is an example of an attribute setter because it updates the value of the "address" attribute.
Attribute (getter): A method used to retrieve or access the value of an attribute in an object. If there was another method called getAddress, it would be considered as an attribute getter because it retrieves the value stored in the "address" attribute.