STATIC INSTANCE QUESTION 94

5. Static instance Question 94 : What is the output of following C# code? class MainClass { static void Main() { int i = 10 ; uint j =2 ; i = i + j; System.Console.Write(i); } } Select Answer :