✪ Choose the correct option.
What will be the output of the program?
class MyThread extends Thread {
MyThread() {
}
MyThread(Runnable r) {
super(r);
}
public void run() {
System.out.print("Inside Thread ");
}
}
class MyRunnable implements Runnable {
public void run() {
System.out.print(" Inside Runnable");
}
}
class Test {
public static void main(String[] args) {
new MyThread().start();
new MyThread(new MyRunnable()).start();
}
}