Home Tutorial Java Scjp Part8 SCJP Module-8 Question-3

 
 

SCJP Module-8 Question-3
Posted on: July 15, 2010 at 12:00 AM
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

Answer:

(B) 

Related Tags for SCJP Module-8 Question-3:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.