How many catch blocks can be there for a single try block?

Answers were Sorted based on User's Feedback



How many catch blocks can be there for a single try block?..

Answer / gladiator

There can be any number of catch block for a single try
block.

However only the catch block encountered first on the call
stack that satisfies the condition for the exception will
be executed for that particular exception, rest will be
ingnored.

Is This Answer Correct ?    69 Yes 4 No

How many catch blocks can be there for a single try block?..

Answer / bikas pandey

You can have as many as catch block for a single try block

Is This Answer Correct ?    30 Yes 1 No

How many catch blocks can be there for a single try block?..

Answer / d.s naidu

Single try block can handle multiple catch blocks.Let
assume if you have 4 catch blocks for a single try block.
while excuting/debugging the code, if the exception raises
that will go the appropriate catch block and resolve the
problem by the programmer. the remaining 3 catch blocks
will raise , if those really having the exception as per
the code logic

Is This Answer Correct ?    20 Yes 4 No

How many catch blocks can be there for a single try block?..

Answer / ankita

The try block is immediately followed by zero or more catch
blocks. It means you can use as many catch blocks with one
try block. But there must be at least one catch block
following a try block, unless you are using a finally block.
For example, consider the following program:
Class Exception {
Public Static void main(string args[ ] ){
int d,a;
try { // monitor a block of code
d=0;
a=42/d;
System.out.println(*This will not be printed,*);
} catch(Arithmetic Exception) { // Catch divide-by-zero
error System.out.println(*Division by Zero*);
}
System.out.println(*After catch statement.*);
} }
This program generates the following output
Division by Zero.
After Catch Statement.

Is This Answer Correct ?    8 Yes 0 No

How many catch blocks can be there for a single try block?..

Answer / ravindarjobs

Hey! The great Gladiator, where are u? Come on to the War.

u have to catch so many people and kill them at a time

Dont waste time on giving suggestions on try and catch
blocks.

Thanks and Regards
Ravindarjobs

Is This Answer Correct ?    6 Yes 42 No

Post New Answer

More C Sharp Interview Questions

What method is used to sort the elements of the array in descending order?

0 Answers   Siebel,


What is difference between list and dictionary in c#?

0 Answers  


What is method overriding in c#

0 Answers  


What are data types in C#?

0 Answers   TryTechnicals Pvt Ltd,


What is the difference b/w Arry.copy() and array.clone() method?

6 Answers  






How many constructors can a class have in c#?

0 Answers  


Can you declare the override method static while the original method is non-static?

3 Answers  


What is the extension of c# file?

0 Answers  


C Sharp

1 Answers   Wipro,


What is a delegate how is it type safe?

0 Answers  


What is constructors, explain with syntax

0 Answers  


can we access main() using objects?

1 Answers   ssinformatics,


Categories