Exit 1Z0-830 Java SE 21 Developer Professional
Question 1 of 5
0% complete
Q1 Single choice

What is the output?

record R(int x) implements AutoCloseable {
public void close() { System.out.print("close "); }
}
try (R r = new R(1)) {
System.out.print("run ");
}
finally {
System.out.print("finally ");
}

  • A

    run finally

  • B

    close run finally

  • C

    run close finally

  • D

    run finally close

Previous Next