Default arguments are overwritten when calling function provides values for them . For example, calling of function sum(10, 15, 25, 30) overwrites the value of z and w to 25 and 30 respectively. During the calling of function, arguments from calling function to called function are copied from left to right.
Read more