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 #10

try-catch-finally Order

mediumExceptions

What does this code print?

📄 Code

1try {
2 Console.Write("A");
3 throw new Exception();
4} catch (Exception) {
5 Console.Write("B");
6} finally {
7 Console.Write("C");
8}