Oracle
1Z0-809 · Question #258
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…
The correct answer is A. start the threads t1 and t2 within a synchronized block. You've hit your session limit · resets 5:20pm (America/New_York)
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;
How the community answered
(29 responses)- A83% (24)
- B3% (1)
- C10% (3)
- D3% (1)
Explanation
You've hit your session limit · resets 5:20pm (America/New_York)
Community Discussion
No community discussion yet for this question.