JAVA Threads Which of the following are methods of the Thread class?1) yield()2) sleep(long msec)3) go()4) stop() 1 , 2 and 4 3 only None of these 1 and 3 1 , 2 and 4 3 only None of these 1 and 3 ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads What will be output of the following program code?public class Test implements Runnable{ public void run(){ System.out.print("go"); } public static void main(String arg[]) { Thread t = new Thread(new Test()); t.run(); t.run(); t.start(); }} "gogogo" is printed "gogo" is printed "go" is printed An exception is thrown at runtime. Compilation fails. "gogogo" is printed "gogo" is printed "go" is printed An exception is thrown at runtime. Compilation fails. ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads When a class extends the Thread class ,it should override ............ method of Thread class to start that thread. start() init() run() go() start() init() run() go() ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads Which keyword when applied on a method indicates that only one thread should execute the method at a time. native final static synchronized volatile native final static synchronized volatile ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads Analyze the following code:public class Test implements Runnable{ public static void main(String[] args){ Test t = new Test(); t.start(); } public void run() { }} The program compiles, but it does not run because the start() method is not defined. The program compiles and runs fine. The program does not compile because the start() method is not defined in the Test class. The program compiles, but it does not run because the run() method is not implemented. The program compiles, but it does not run because the start() method is not defined. The program compiles and runs fine. The program does not compile because the start() method is not defined in the Test class. The program compiles, but it does not run because the run() method is not implemented. ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads What notifyAll() method do? None of these Wakes up all threads that are waiting on this object's monitor Wakes up one threads that are waiting on this object's monitor Wakes up all threads that are not waiting on this object's monitor None of these Wakes up all threads that are waiting on this object's monitor Wakes up one threads that are waiting on this object's monitor Wakes up all threads that are not waiting on this object's monitor ANSWER DOWNLOAD EXAMIANS APP