The program given below will test your knowledge Thread and their execution in Java.
The program given below will test your knowledge Thread and their execution in Java.Given a sample code:
public class Test extends Thread {
static String name = "raj";
public static void main(String args[]) {
Test t = new Test();
t.testMethod(name);
System.out.print(" " + name);
}
public void testMethod(String name) {
start();
System.out.print(" method");
}
public void run() {
System.out.print(" run");
}
}
Which of the following statement is correct ?
(A) raj method run
(B) method raj run
(C) run method run
(D) run raj method
(B)