CSD201_-_FA_2022_-_FE_211.webp
P

CSD201_-_FA_2022_-_FE_211.webp

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
Chưa có bình luận nào.

Thông tin

Category
CSD201
Thêm bởi
pure_wind
Ngày thêm
Lượt xem
630
Lượt bình luận
0
Rating
0.00 star(s) 0 đánh giá

Share this media

Back
Bên trên Bottom