Computer Science, asked by jessie8114, 9 months ago

Which statement is correct about pass by value?

Answers

Answered by pranay9018
3

Explanation:

Pass by value. Pass by value means that a copy of the actual parameter's value is made in memory, i.e. the caller and callee have two independent variables with the same value. If the callee modifies the parameter value, the effect is not visible to the caller.

Hope it is useful to you and plz rate my answer if my answer is best then Mark me asa BRAINLIST

Answered by egonza2043
1

Answer:

b -> Yes pass by value creates a copy of the original variable.

c -> Yes pass by value doesn't use the '&' operator, that operator is used in pass by reference.

d -> Yes pass by value protects your original source/variables from changes in called/outside functions since it creates a copy of the original variable.

Explanation:

Similar questions