Answer:
Parameters of primitive type are considered by Java methods to be local variables.
Step-by-step explanation:
The parameters in JAVA are passed by value only. This means a parameter is considered to be local and a copy of the value is created used locally.
So if you change parameters of the primitive type so the value you change is local to the method. This implies that a copy of the parameter is made and the changes made on this copy will not affect the argument's value. In a nut shell, the parameters of primitive type are considered by Java methods to be local variables.