Can multiple catch blocks be executed?

Answers were Sorted based on User's Feedback



Can multiple catch blocks be executed?..

Answer / senthil kumar

No.We may have the multiple catch block.Every catch block
has the different exception.when code found any error
suitable exception will be fired.but only one catch block
executed.

Is This Answer Correct ?    20 Yes 1 No

Can multiple catch blocks be executed?..

Answer / daniel

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 ?    16 Yes 3 No

Can multiple catch blocks be executed?..

Answer / kumarraju

Not Executed Multiple catch blocks, exception raised then
corresponding catch block only executed, after that finally
block executed. In case Exception is not raised then
finally block executed.

why you are writing multiple catch blocks than
one catch blocks?
Ans: you does not know what the exception raise, then you
are excepting some exceptions thats only you write multiple
catch blocks.

Is This Answer Correct ?    6 Yes 1 No

Can multiple catch blocks be executed?..

Answer / guest

It is possible to use more than one specific catch clause
in the same try-catch statement. In this case, the order of
the catch clauses is important because the catch clauses
are examined in order. Catch the more specific exceptions
before the less specific ones.

source: msdn

Is This Answer Correct ?    3 Yes 6 No

Post New Answer

More C Sharp Interview Questions

Why do we need indexers in c#?

0 Answers  


Where’s global assembly cache located on the system?

0 Answers  


Explain the three services model (three-tier application).

3 Answers   4Cplus,


Why would you use a class property in c#?

0 Answers  


Hi Everyone, the design of the form disappear during writing codes for dataset and data grid. The error show in "line of assigning dataset". I don't know what's happen. If anyone know , please share of technical help from someone. Thanks, Horace Trever

1 Answers  






HOW to Develope the CRUD(create,read,update,delete) FORM IN WINDOWS form by using c# only

0 Answers   Petranics Solutions,


What is satellite assembly? And steps to create satellite assembly?

0 Answers  


What .exe means?

0 Answers  


What?s a multicast delegate?

3 Answers  


Why do we need abstract class?

0 Answers  


When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)?

2 Answers   Mind Tree,


Describe the parts of assembly.

0 Answers  


Categories