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;
}
Answer Posted / kapil
will catch execute and after that finally block will
execute.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is close method? How its different from finalize and dispose?
Explain .net framework overview?
Is .net core the future?
Using activex control in .net?
If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
What is the need of OLE-automation?
Explain can the validation be done in the server side? Or this can be done only in the client side?
What is connected and diconnected database ?
What is a windows process in .net?
What is the difference between .net 2000 and .net 2005(features)? Which one is better?
Explain how does assembly versioning work?
Why did they call it .net?
What is Full trust permission set in .Net
How can you assign an rgb color to a system.drawing.color object?
What is implement a generic action in webapi?