Consider the following code and choose the incorrect statement.: def s(n1): print(id(n1)) n2=4 s(n2) print(id(n2))
1.Function name is ‘s’
2.Function ‘s’ is taking one parameter.
3.Both print statement will print the same value.
4.Both print statement will print different value.
Answer:4