162.
What is the output of the following code
public static void Main()
{
try{
int a = 12;
int b = 0;
Console.WriteLine(a/b);
}
catch(DivideByZeroException ex){
Console.WriteLine("Block A");
}
catch(Exception ex){
Console.WriteLine("Block B");
}
}
View Description
12/0 will generate a DivideByZeroException error+