Vidyalelo
C# Programming · Q57

Exception Handling in C Sharp

Programming · C# Programming · question 57

Q57

What will be the output of the following C# code? class Output public static void main(String args[]) try int a = 5; int b = 10; int c = b / a - 5; Console.WriteLine("Csharp");

A.
Csharp
B.
sharp
C.
C
D.
Compile time error
Answer

Answer: Option D

Solution

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