Answer
A function that passes parameters call-by-reference can potentially make changes to the parameters that will be visible to the caller; call-by-value parameters are copies, and changes made to them within the function will not be visible from outside.
Work Step by Step
A function that passes parameters call-by-reference can potentially make changes to the parameters that will be visible to the caller; call-by-value parameters are copies, and changes made to them within the function will not be visible from outside.