Choose the correct answer: def s(n1): print(n1) n2=4 s(n2) Statement A : n1 and n2 have same memory Address Statement B : both n1 and n2 are referring to the same value, so they have same identity
1.Statement A is True and Statement B is False
2. Statement A is False and Statement B is True
3.Both the statements are True
4.Both the statements are False
Answer:3