K
Multiple choices 7/50
Answer (Choose 1 answer)
What will be the output of the below code?
A. Compile time error
B. Null error occurred
C. Index error occurred!
D. Error occurred!
public static void Main()
{
int[] arr = {1, 2, 3, 4, 5);
try{
}
Console.Write(arr[10]);
catch(Exception ex) {
Console.WriteLine("Error occurred!");
}
catch(IndexOutOfRangeException ex) {
Console.WriteLine("Index error occurred!");
}
catch(NullReferenceException ex) {
Console.WriteLine("Null error occurred!");
}
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
29 30 31 32 33 34 35 36 37 38 39 40 41 42
43 44 45 46 47 48 49 50