Which two code fragments will execute the method doStuff() in a separate thread?

Which two code fragments will execute the method doStuff() in a separate thread? (Choose two.)

Which two code fragments will execute the method doStuff() in a separate thread? (Choose two.)

A.
new Thread() {
public void start() { doStuff(); }
};

B.
new Thread() {
public void run() { doStuff(); }
};

C.
new Thread(new Runnable() {
public void run() { doStuff(); }
}).start();

D.
new Thread() {
public void start() { doStuff(); }
}.run();

E.
new Thread(new Runnable() {
public void run() { doStuff(); }
}).run();

F.
new Thread() {
public void run() { doStuff(); }
}.start();



Leave a Reply 0

Your email address will not be published. Required fields are marked *