C# Programming :: Exception Handling
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following statements are correct about the exception reported below?
Unhandled Exception: System.lndexOutOfRangeException: Index was outside the bounds of the array: at FreshergateConsoleApplication.MyProgram.SetVal(Int32 index, Int32 val) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 26 at FreshergateConsoleApplication.MyProgram.Main(String[] args) in D:\Sample\FreshergateConsoleApplication\MyProgram.cs:line 20- The CLR failed to handle the exception.
- The class MyProgram belongs to the namespace MyProgram.
- The function SetVal() was called from Main() in line number 20.
- The exception occurred in line number 26 in the function SetVal()
- The runtime exception occurred in the project FreshergateConsoleApplication.
-
Which of the following is the Object Oriented way of handling run-time errors?
-
Which of the following statements is correct about the C#.NET program given below if a value "6" is input to it
using System;
namespace FreshergateConsoleApplication
{
class MyProgram
{
static void Main(string[] args)
{
int index;
int val = 44;
int[] a = new int[5];
try
{
Console.Write("Enter a number:");
index = Convert.Tolnt32(Console.ReadLine());
a[index] = val;
}
catch(FormatException e)}
Console.Write("Bad Format");
}
catch(IndexOutOfRangeException e)
{
Console.Write("Index out of bounds");
Console.Write("Remaining program");
}
}
}