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 close method? How its different from finalize and dispose?
What are remotable objects in .NET Remoting?
Explain why do we use the “using” statement?
Difference between VB.NET and C#. Which is faster ?
Explain about Behavioral design pattern?
What is different between User Control and Web Control and Custom Control?
Will it go to finally block if there is no exception happened?
for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?
Explain how to rename a table using sql queries?
What is delegation in .net?
Explain the garbage collection process?
What is RCW (Run time Callable Wrappers)?