← Back to Question List
C# Quiz #10
try-catch-finally Order
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}