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 |
Explain what is the difference between constants and read-only variables?
Explain the process of serialization in .NET?
for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?
Can you edit data in repeater control? How?
What is boxing?
How to spawn a thread?
How server form post-back works?
What is STA in .NET?
What application do you use to install a Windows service?
What is difference between .net and .net core?
What is Assembly manifest? what all details the assembly manifest will contain.
Do you know what is the difference between an abstract class and an interface?