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 |
What method do you use to explicitly kill a users session? How?
Dot Net is Platform Independent or Platform Dependent..?
What is managed code execution?
which method do you use to redirect the user to another page without performing a round trip to the client? How?
What is equivalent for regsvr32 exe in .net ?
Which dll translate xml to sql in internet information server (iis)?
Explain the difference between vb and vb.net?
what is object lock?
Can you explain what do you understand about web service?
Explain the process of compilation in .NET?
Readonly vs. const?
Tell us why do we use the “using” statement?