

MCQOPTIONS
Saved Bookmarks
1. |
For the given set of 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 |
C. | Specifying datatype for conversion externally will solve the problem |
D. | None of the mentioned |
Answer» C. Specifying datatype for conversion externally will solve the problem | |