What will be the output of the following program?
public class IsItCorrect {
public static void main(String[] args) throws InterruptedException {
Thread t = new Thread();
Runnable r = new Runnable() {
public void run() {
try {
t.sleep(1);
} catch (InterruptedException e) {
System.out.print("Interrupted,");
}
System.out.print("Run,");
}
};
t.run();
System.out.print("Started,");
t.start();
System.out.print("Ended,");
}
}