nTo be invoked properly, a method sometimes requires information from the client. Information is passed in as parameters.
nWhen a client invokes a method, the client must provide a value of the appropriate type for each parameter.
nSyntax:instance.method(p0,p1,p2…)
nThe only way an
object’s state can change is by invoking
one of the object’s methods.