1.

Select the output choice 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. 0
B. Exception arguement is thrown
C. NaN
D. None of the mentioned
Answer» D. None of the mentioned


Discussion

No Comment Found