Which kind of method often has a void return type? Why?
Accessor methods have a return type because they are used to get information on an object. Modification methods have a void return type because they make some change to the variables but do not return information.