nerdexam
Oracle

1Z0-809 · Question #258

1Z0-809 Question #258: Real Exam Question with Answer & Explanation

Sign in or unlock 1Z0-809 to reveal the answer and full explanation for question #258. The question stem and answer options stay visible for context.

Question

MyThread mt = new MyThread(); Thread t1 = new Thread(mt); Thread t2 = new Thread(mt); t1.start(); t2.start(); The threads t1 and t2 execute asynchronously and possibly prints ABCA or AAGB. You have been asked to modify the code to make the threads execute synchronously and prints ABC. Which modification meets the requirement?

Options

  • Astart the threads t1 and t2 within a synchronized block.
  • BReplace line n1 with: private synchronized int count = 0;
  • CReplace line n2 with: public synchronized void run () {
  • DReplace line n2 with: volatile int count = 0;

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.

Full 1Z0-809 Practice