Q101
Open questionWhat will be the output of the following C# code snippet?
class Output
{
public static void main(String args[])
{
try
{
int a = 10;
int b = 5;
int c = b - 5 / 5;
Console.WriteLine("Hi");
}
catch(Exception e)
{
Console.WriteLine("hello");
}
}
}Select an option to see the answer and solution.