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 the difference between reference type and value type?

1 Answers  


Explain how to redirect tracing to a file?

1 Answers  


How to find methods of a assembly file (not using ILDASM) Reflection

1 Answers  


Is .NET a runtime service or a development platform?

2 Answers  


What?s Singleton activation mode?

1 Answers  


What is an anonymous method?

1 Answers  


Tell us what is a variable of implicit type and what is its scope?

1 Answers  


What are virtual destructures?

1 Answers  


Is .net is a language?

1 Answers  


Explain security measures exist for .net remoting in system.runtime.remoting?

1 Answers  


Explain what are possible implementations of distributed applications in .net?

1 Answers  


when web.config file is being called or referenced?tell me about the searialized procedure followed in page loading.

1 Answers   AZTEC,


Categories