C# Programming - Exception Handling
Why should I learn to solve C# Programming questions and answers section on "Exception Handling"?
Learn and practise solving C# Programming questions and answers section on "Exception Handling" to enhance your skills so that you can clear interviews, competitive examinations, and various entrance tests (CAT, GATE, GRE, MAT, bank exams, railway exams, etc.) with full confidence.
Where can I get the C# Programming questions and answers section on "Exception Handling"?
IndiaBIX provides you with numerous C# Programming questions and answers based on "Exception Handling" along with fully solved examples and detailed explanations that will be easy to understand.
Where can I get the C# Programming section on "Exception Handling" MCQ-type interview questions and answers (objective type, multiple choice)?
Here you can find multiple-choice C# Programming questions and answers based on "Exception Handling" for your placement interviews and competitive exams. Objective-type and true-or-false-type questions are given too.
How do I download the C# Programming questions and answers section on "Exception Handling" in PDF format?
You can download the C# Programming quiz questions and answers section on "Exception Handling" as PDF files or eBooks.
How do I solve C# Programming quiz problems based on "Exception Handling"?
You can easily solve C# Programming quiz problems based on "Exception Handling" by practising the given exercises, including shortcuts and tricks.
- Exception Handling - General Questions
using System;
namespace IndiabixConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
int index = 6;
int val = 44;
int[] a = new int[5];
try
{
a[index] = val ;
}
catch(IndexOutOfRangeException e)
{
Console.Write("Index out of bounds ");
}
Console.Write("Remaining program");
}
}
}
- If an exception occurs then the program terminates abruptly without getting any chance to recover from the exception.
- No matter whether an exception occurs or not, the statements in the finally clause (if present) will get executed.
- A program can contain multiple finally clauses.
- A finally clause is written outside the try block.
- finally clause is used to perform clean up operations like closing the network/database connections.