Examveda

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

C. Run time error

D. Compile time error

Answer: Option B


Join The Discussion

Related Questions on Functions and Methods in C Sharp