Vidyalelo
C# Programming · Q51

Exception Handling in C Sharp

Programming · C# Programming · question 51

Q51

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

A.
Hi
B.
hello
Answer
C.
Hihello
D.
Compile time error

Answer: Option B

Solution

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