questions on various scenarios on exception handling?
like for example....

try
{
a;
b; ...exception occurs here...what happens...will catch
execute or will finally execute...will c execute
c;
}
catch
{
a;
b;
c;
}
fianlly
{
a;
b;
}



questions on various scenarios on exception handling? like for example.... try { a; b; ...exc..

Answer / kapil

will catch execute and after that finally block will
execute.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More Dot Net General Interview Questions

What is close method? How its different from finalize and dispose?

0 Answers  


What are remotable objects in .NET Remoting?

1 Answers  


Explain why do we use the “using” statement?

0 Answers  


Difference between VB.NET and C#. Which is faster ?

16 Answers   TCS,


Explain about Behavioral design pattern?

0 Answers  


What is different between User Control and Web Control and Custom Control?

2 Answers  


Will it go to finally block if there is no exception happened?

0 Answers  


for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?

5 Answers   IBM,


Explain how to rename a table using sql queries?

0 Answers  


What is delegation in .net?

0 Answers  


Explain the garbage collection process?

0 Answers  


What is RCW (Run time Callable Wrappers)?

2 Answers  


Categories