Method call arguments are expressions whose values are passed from a calling program to a method. They must match the formal parameter list of the method in order, type and number.
Pattern:
methodName(argumentList);
where:
As an example, consider the the following call to a
computeDistance()
method, which passes four argument values representing the x-y coordinates of two points.