1. Computer Science Engineering (CSE)
  2. .NET Programming
  3. What will be output of the following con...
Q.

What will be output of the following conversion ?
static void Main(string[] args)
{
char a = 'A';
string b = "a";
Console.WriteLine(Convert.ToInt32(a));
Console.WriteLine(Convert.ToInt32(Convert.Tochar(b)));
Console.ReadLine();
}

A. 1, 97
B. 65, 97
C. 65, 97
D. 97, 1
Answer» C. 65, 97
View all MCQs in:   .NET Programming

Discussion