1.

What is the output for the following set of code? static void Main(string[] args) { char A = 'K'; char B = Convert.ToChar(76); A++; B++; Console.WriteLine(A+ " " +B); Console.ReadLine(); }

A. M L
B. U L
C. L M
D. A B
Answer» D. A B


Discussion

No Comment Found