Oracle
1Z0-809 · Question #193
1Z0-809 Question #193: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-809 to reveal the answer and full explanation for question #193. The question stem and answer options stay visible for context.
Question
Given:
class DataConverter {
public void copyFlatFilesToTables() { }
public void close() throws Exception { // line n1
throw new RuntimeException();
}
}
and the code fragment:
public static void main(String[] args) throws Exception { // line n2
try (DataConverter dc = new DataConverter()) { // line n2
dc.copyFlatFilesToTables();
}
}
What is the result?
Options
- AA compilation error occurs at line n2.
- BA compilation error occurs because the try block doesn't have a catch or finally block.
- CA compilation error occurs at line n1.
- DThe program compiles successfully.
Unlock 1Z0-809 to see the answer
You've previewed enough free 1Z0-809 questions. Unlock 1Z0-809 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.