Q. In case of arguments passed by values when calling a function such as z=addidion(x,y), (Solved)
1. Any modifications to the variables x & y from inside the function will not have any effect outside the function.
2. The variables x and y will be updated when any modification is done in the function
3. The variables x and y are passed to the function addition
4. None of above are vali
- a. Any modifications to the variables x & y from inside the function will not have any effect outside the function.