Exception handling

Answers were Sorted based on User's Feedback



Exception handling..

Answer / alb.shah

"An exception handler is a piece of code which will be
called when an exception occurs."

.NET Framework provides several classes to work with
exceptions. The keywords try, catch are used to handle
exceptions in .NET. You have to put the code (that can
cause an exception) in a try block. If an exception occurs
at any line of code inside a try block, the control of
execution will be transfered to the code inside the catch
block.
If any statement within the try block raises an exception,
the control of execution will be transfered to the first
line within the catch block. You can write the error
handling code in the catch block, like recording the error
message into a log file, sending an email to the
administrator about the problem occurred, showing an
appropriate error message to the user etc.
You can optionally use a 'finally' block along with the try-
catch. The 'finally' block is guaranteed to be executed
even if there is an exception.
If an exception is not 'handled' in code, the application
will crash and user will see an ugly message. Instead, you
can catch the exception, log the errors and show a friendly
message to the user.

Is This Answer Correct ?    2 Yes 0 No

Exception handling..

Answer / pavan

Yes. Multiple catch blocks may be put in a try block. See
code example below, to see multiple catch blocks being used
in C#.

class ClassA
{
public static void Main()
{
int y = 0;
try
{
val = 100/y;
Console.WriteLine("Line not executed");
}
catch(DivideByZeroException ex)
{
Console.WriteLine("DivideByZeroException" );
}
catch(Exception ex)
{
Console.WritLine("Some Exception" );
}
finally
{
Console.WriteLine("This Finally Line gets executed always");
}
Console.WriteLine("Result is {0}",val);
}
}

Read more:
http://discuss.itacumens.com/index.php?topic=17579.0#ixzz12vqW9paZ















... · ADO works with connected data. This
means ...
... when you access data, such as viewing and updating
data, it is real-time, with a ...
... being used all the time.

ADO.NET supports disconnected architecture. ...
... you access data, ADO.NET makes a copy of the data using
XML. ...
... make any requested updates. This makes ADO.NET
efficient to use for Web ...
... .

· ADO has one main object that is used to ...
... to create a new set of records. With ADO.NET, you have
various objects that ...
... relational model of your database.

· ADO allows you to create client-side ...
... only, whereas ADO.NET gives you the choice of using ...
... -side or server-side cursors. Whereas ADO allows you to
persist records in XML ...
... , ADO.NET allows you to manipulate data using. ...

Read more:
http://discuss.itacumens.com/index.php?action=search2#ixzz12w06GrN6
























The DataAdapter object
plays the middleman between DataSet and database.
The DataSet represents a rich subset of the entire database,
cached on your machine without a continuous connection to
the database. The DataSet is comrised of DataTable objects
as well as Datarelation objects.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

Can we Run the Application without Build

3 Answers   Emphasis,


How many types of triggers are there in update panel?

0 Answers  


Name the two properties are on every validation control?

0 Answers  


How to write unmanaged code and how to identify whether the code is managed / unmanaged ?

2 Answers   Accenture, BirlaSoft, Cogtest,


How to convert a string into an Integer in ASP.net?

12 Answers  






which method marks a config file section for encryption?

1 Answers  


What is route in web api?

0 Answers  


detail code for sql data connections?

2 Answers  


Is it possible to prevent a browser from caching an ASPX page?

3 Answers  


What are the various types of validation controls provided by asp.net?

0 Answers  


How to handle errors in Web API?

0 Answers  


What is the caspol.exe tool used for?

0 Answers  


Categories