Can multiple catch blocks be executed?

Answers were Sorted based on User's Feedback



Can multiple catch blocks be executed?..

Answer / amina awan

Multiple catch blocks will not be executed. But we can use multiple catch blocks for a try block. The respective catch block will get executed according to the error arises.

Is This Answer Correct ?    3 Yes 0 No

Can multiple catch blocks be executed?..

Answer / photon

No, When the Exception handled the Correct Catch Block
,After that the cursor is move to finally Block, the below
catch block was not handled.

Is This Answer Correct ?    1 Yes 0 No

Can multiple catch blocks be executed?..

Answer / guest

No, once the proper catch code fires off, the control is
transferred to the finally block (if there are any), and
then whatever follows the finally block

Is This Answer Correct ?    0 Yes 0 No

Can multiple catch blocks be executed?..

Answer / vijay saxena

No,

try
{
int p = 0;
int t = 6 / p;
}
catch (ArithmeticException ex)
{
Console.WriteLine("Arithmetic Exception");
}
catch (Exception ex)
{
Console.WriteLine("General Exception");
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is float in unity?

0 Answers  


Is goto statement supported in c#?

0 Answers  


What is the correct way of declaring an xml namespace?

0 Answers  


What is xml document how do you open it?

0 Answers  


What is difference between encapsulation and abstraction in c#?

0 Answers  






What is use of singleton class in c#?

0 Answers  


What is desktop GUI application?

0 Answers  


what are nullable types in c#

0 Answers   Cognizant,


What is iqueryable?

0 Answers  


What does convert toint32 mean?

0 Answers  


If u declare two interfaces withsame methodnmae .prototype how can u call the particular method from class?

4 Answers   Microsoft,


How do you type a null character?

0 Answers  


Categories