Fill in the blank:
Java uses ____ to send data into a method.
B.
Java uses pass-by-value to copy primitives and references of objects into a method.
The changes to the primitive value or reference in the method are not carried to the calling method.
The data within an object can change, just not the original reference itself.
Option B is the correct answer.
Options C and D are incorrect.
Option A is not a real term.