1Z0-830 Web TestEngine demo

Exit VCEDump 1Z0-830 Java SE 21 Developer Professional
Question 1 of 15
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 ");
}

Previous Check answer

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in