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 / kapil
will catch execute and after that finally block will
execute.
| Is This Answer Correct ? | 3 Yes | 1 No |
How to Create and Consume a Web Service?
Explain the difference between the while and for loop.
What is a Manifest?
What is a system lock?
What is namespace in .net?
What are the purposes of using .net?
can any one tel me the complete Testing Procedure of any one simple PROJECT i mean either web/windows based application?
What is the raise event used for?
Write an StoredProcedure to get the values of a column within a date range.
What's singleton activation mode in .net?
What is the root class in .net?
What's wrong with a line like this? Datetime.parse(mystring);