1.

Select the correct output for the following set of code :
 class Program { public static void Main(string[] args) { int i, j; i = (j = 5) + 10; Console. WriteLine(i); Console. WriteLine(j); Console. ReadLine(); } }

A. 15, 15
B. 10, 5
C. 15, 5
D. 10, 15
Answer» D. 10, 15


Discussion

No Comment Found