MindIQ Academy
1 / 100
OCJP 21 (1Z0-830) - Exception Handling - 100 MCQs

Question 1

What is the result?

class Test {
    public static void main(String[] args) {
        try {
            System.out.println("try");
        } catch (Exception e) {
            System.out.println("catch");
        } finally {
            System.out.println("finally");
        }
    }
}