Vidyalelo
C# Programming · Q51

Functions and Methods in C Sharp

Programming · C# Programming · question 51

Q51

What will be the output of the following C# code snippet? class Program static void Main(string[] args) int x, y = 1; x = 10; if(x != 10 && x / Convert.ToInt32(0) == 0) Console.WriteLine(y); else Console.WriteLine(++y); Console.ReadLine();

A.
1
B.
2
Answer
C.
Run time error
D.
Compile time error

Answer: Option B

Solution

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