K
Multiple choices 5/50
Answer (Choose 1 answer)
What will be the output of the below code?
public static void Main()
A. Error occurred! Run-time exception: Index was outside the bounds of the array
B. Compile time error
C. Runtime error
D. No output and the program terminates
int[] arr (1, 2, 3, 4, 5);
try{
}
Console.Write(arr[10]);
finally{
Console.WriteLine("Error occurred!");
}
}
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
43 44 45 46 47 48 49 50