Solved

What Will Be Output of the Following Conversion

Question 9

Multiple Choice

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

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions