Question: Consider the following class Which of the following will create and start this thread? (a) New Runnable(MyClass).start(); (b) New Thread(MyClass).run(); (c) New Thread(new MyClass()).start(); (d)

Consider the following classpublic class MyClass implements Runnable { public void run () // some code here {

Which of the following will create and start this thread?

(a) New Runnable(MyClass).start();

(b) New Thread(MyClass).run();

(c) New Thread(new MyClass()).start();

(d) New MyClass().start();

public class MyClass implements Runnable { public void run () // some code here {

Step by Step Solution

3.44 Rating (154 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

c New... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Advanced Java Programming Questions!