1)

What is the output for the following set of code?

public static void Main(string[] args)
{
double ZERO = 0;
Console.WriteLine("RESULT OF DIVISION BY ZERO IS :{0}", (0 / ZERO));
Console.ReadLine();
}


A) None of the mentioned

B) Exception argument is thrown

C) NaN

D) 0

Answer:

Option C