Computer Science, asked by bharattanwar151, 6 months ago

Section 3 of 3 Tech Test
that
20
Question #19
Rev
When a called function is not allowed to modify the parameters, this semantics is known as​

Answers

Answered by sountharyakannan
3

Answer:

pass by value

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.

Overview:

Passes an argument by value.

Callee does not have any access to the underlying element in the calling code.

A copy of the data is sent to the callee.

Changes made to the passed variable do not affect the actual value.

Answered by Anonymous
1

Answer:

Pass by value

Explanation:

please mark as brainliest and follow me!

Similar questions