Answer: (B) When an argument is passed by reference, the called method can access the argument’s value in the caller directly but cannot modify it.
Explanation:
In call by reference method, when an argument is pass to the function so that it copies an argument in the form of formal parameter. In the function, the reference is basically used for accessing the actual argument in the given call function value.
The function is basically operated on the given argument value and the original value gets change when the given function value change the value of argument when it is pass by reference method.