publicclassTestOneimplementsRunnable{publicstaticvoidmain(String[]args)throwsException{Threadt=newThread(newTestOne());t.start();System.out.print(”Started”);t.join();System.out.print(”Complete”);}publicvoidrun(){for(inti=0;i<4;i++){System.out.print(i);}}}Whatcanbearesult?()
A. Compilationfails.
B. Anexceptionisthrownatruntime.
C. Thecodeexecutesandprints“StartedComplete”.
D. Thecodeexecutesandprints“StartedComplete0123”.
E. Thecodeexecutesandprints“Started0l23Complete”.