CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C# Quiz #36

Catching a Specific Exception

mediumExceptions

What does this code print?

📄 Code

1try {
2 int[] a = new int[2];
3 Console.Write(a[5]);
4}
5catch (IndexOutOfRangeException) {
6 Console.Write("caught");
7}