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 is .net assembly?
What are the types of assemblies in .net?
What are Generics? Where do we use them.
what is the use of "mustinherit" keyword?
What is the concept of inheritance in .net?
Explain the top .net class that everything is derived from?
Please explain what is the difference between constants and read-only variables?
SAP Business One(this is intigrated tool of .net)
What does stateless mean?
Explain what is reflection in microsoft .net context?
Resource Files: How to use the resource files, how to know which language to use?
Can you write a class without specifying namespace?