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 CuriousTabConsoleApplication.Program.Main(String[] args) in D:\ConsoleApplication\Program.cs:line 14
The program did not handle an exception called IndexOutOfRangeException.
The program execution continued after the exception occurred.
The exception occurred in line number 14.
In line number 14, the program attempted to access an array element which was beyond the bounds of the array.
The CLR could not handle the exception.
Options
A. 1 only
B. 1, 2 and 3 only
C. 2 and 5 only
D. 1, 3 and 4 only
E. None of the above
Correct Answer
1, 3 and 4 only
More questions
1. Which of the following is NOT an Arithmetic operator in C#.NET?