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.

Exercise : Exception Handling - General Questions
  • Exception Handling - General Questions
1.
Which of the following is NOT a .NET Exception class?
Exception
StackMemoryException
DivideByZeroException
OutOfMemoryException
InvalidOperationException
Answer: Option
Explanation:
No answer description is available. Let's discuss.

2.
Which of the following statements is correct about an Exception?
It occurs during compilation.
It occurs during linking.
It occurs at run-time.
It occurs during Just-In-Time compilation.
It occurs during loading of the program.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
In C#.NET if we do not catch the exception thrown at runtime then which of the following will catch it?
Compiler
CLR
Linker
Loader
Operating system
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
Which of the following statements is correct about the C#.NET program given below?
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");
        }
    }
}
Value 44 will get assigned to a[6].
It will output: Index out of bounds
It will output: Remaining program
It will not produce any output.
It will output: Index out of bounds Remaining program
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
Which of the following statements are correct about exception handling in C#.NET?
  1. If an exception occurs then the program terminates abruptly without getting any chance to recover from the exception.
  2. No matter whether an exception occurs or not, the statements in the finally clause (if present) will get executed.
  3. A program can contain multiple finally clauses.
  4. A finally clause is written outside the try block.
  5. finally clause is used to perform clean up operations like closing the network/database connections.
1 only
2 only
2 and 5 only
3 and 4 only
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.