Vidyalelo
C# Programming · Q71

Miscellaneous in C Sharp

Programming · C# Programming · question 71

Q71

What will be the output of the following C# 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
Answer
D.
4.76

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board