Oracle
1Z0-851 · Question #53
1Z0-851 Question #53: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-851 to reveal the answer and full explanation for question #53. The question stem and answer options stay visible for context.
Question
Given: public class TestOne implements Runnable { public static void main (String[] args) throws Exception { Thread t = new Thread(new TestOne()); t.start(); System.out.print("Started"); join(); System.out.print("Complete"); } public void run() { for (int i = 0; i < 4; i++) { System.out.print(i); } } } What can be a result?
Options
- ACompilation fails.
- BAn exception is thrown at runtime.
- CThe code executes and prints "StartedComplete".
- DThe code executes and prints "StartedComplete0123".
- EThe code executes and prints "Started0123Complete".
Unlock 1Z0-851 to see the answer
You've previewed enough free 1Z0-851 questions. Unlock 1Z0-851 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.