Vidyalelo
C# Programming · Q50

Basic Syntax and Data Types in C Sharp

Programming · C# Programming · question 50

Q50

For the following C# code select the relevant solution for conversion of data type. static void Main(string[] args) int num1 = 20000; int num2 = 50000; long total; total = num1 + num2; Console.WriteLine("Total is : " +total); Console.ReadLine();

A.
Compiler will generate runtime error
B.
Conversion is implicit type, no error generation
Answer
C.
Specifying data type for conversion externally will solve the problem
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board