Which of the following statements is correct about the C#.NET code snippet given below?
short s1 = 20;short s2 = 400;int a;a = s1 * s2;
Answer: Option A
Explanation: