1.

What is the output for the following set of code ? static void Main(string[] args) { double a = 345.09; byte c = (byte) a; Console.WriteLine(c); Console.ReadLine(); }

A. 98
B. 89
C. 88
D. 84
Answer» C. 88


Discussion

No Comment Found