Multiple choice Which one of the following is the correct structure to create and run a thread? class MyClass extends Runnable { public void run() { } } class MyClass implements Thread { public void run() { } } class Thread MyClass { public void run() { } } class MyClass extends Thread { public void run() { } } Reveal answer Fill a bubble to check yourself D Correct answer Explanation The correct structure is: class MyClass extends Thread { public void run() { } }