JAVA Threads Which of the following constructor of class Thread is valid one? Thread(int priority) None of these Thread(String threadName, int priority) Thread(Runnable threadOb, int priority) Thread(Runnable threadOb, String threadName) Thread(int priority) None of these Thread(String threadName, int priority) Thread(Runnable threadOb, int priority) Thread(Runnable threadOb, String threadName) ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads What will happen when you attempt to compile and run the following code?class A implements Runnable{ public void run(){ System.out.println("run-A"); }}1. public class Test{2. public static void main(String argv[]){3. A a = new A();4. Thread t = new Thread(a);5. System.out.println(t.isAlive());6. t.start();7. System.out.println(t.isAlive());8. }9. } true run-A true false run-A false false run-A true None of these Compilation fails due to an error on line 7 true run-A true false run-A false false run-A true None of these Compilation fails due to an error on line 7 ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads What will happen after compiling and running following code?class A implements Runnable{ public void run(){ System.out.println("run-a"); }}1. public class Test{2. public static void main(String... args){3. A a = new A();4. Thread t = new Thread(a);5. t.start();6. t.start();7. }8. } run-a Compilation succeed but Runtime Exception run-a run-a Compilation fails with an error at line 6 None of these run-a Compilation succeed but Runtime Exception run-a run-a Compilation fails with an error at line 6 None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads In java a thread can be created by .......... Implementing Runnable interface. Extending the thread class. Both of the above None of these Implementing Runnable interface. Extending the thread class. Both of the above None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads Predict the output:class A implements Runnable{ public void run(){ try{ for(int i=0;i<4;i++){ Thread.sleep(100); System.out.println(Thread.currentThread().getName()); } }catch(InterruptedException e){ } }}public class Test{ public static void main(String argv[]) throws Exception{ A a = new A(); Thread t = new Thread(a, "A"); Thread t1 = new Thread(a, "B"); t.start(); t.join(); t1.start(); }} Compilation succeed but Runtime Exception Output order is not guaranteed A B A B A B A B None of these A A A A B B B B Compilation succeed but Runtime Exception Output order is not guaranteed A B A B A B A B None of these A A A A B B B B ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads What will be the output?class One extends Thread{public void run(){for(int i=0; i<2; i++){System.out.print(i);}}}public class Test{public static void main(String args[]){Test t = new Test();t.call(new One());} public void call(One o){o.start();}} None of these 0 1 Compilation Error 0 0 None of these 0 1 Compilation Error 0 0 ANSWER DOWNLOAD EXAMIANS APP