In programming, when a function receives a copy of an argument's value, allowing the original variable to remain unchanged, what parameter passing mechanism is being used?
The parameter passing mechanism being used when a function receives a copy of an argument's value, allowing the original variable to remain unchanged, is called Pass by Value. In this mechanism, when a function is called, a completely new, independent copy of the argument's data is created and assigned to the function's parameter. An argument is t....
Community Answers
Sign in to open profiles and full community answers.
No community answers yet. Be the first to submit one.