1.

What will be the output of the given code snippet?
 class Program { static void Main(string[] args) { double x = 4.772; double y = 4.76; double z = Math.Max(x, y); Console.WriteLine(z); Console.ReadLine(); } }  

A. True
B. False
C. 4.772
D. 4.76
Answer» D. 4.76


Discussion

No Comment Found