Which of the following statements is correct about the C#.NET code snippet given below?
int i;int j = new int();i = 10;j = 20; String str; str = i.ToString(); str = j.ToString();
Answer: Option A
Explanation: