1.

public class MyRunnable implements Runnable { public void run() { // some code here }
}
which of these will create and start this thread?

A. new Runnable(MyRunnable).start();
B. new Thread(MyRunnable).run();
C. new Thread(new MyRunnable()).start();
D. new MyRunnable().start();
Answer» D. new MyRunnable().start();


Discussion

No Comment Found

Related MCQs