JAVA Threads Which keyword when applied on a method indicates that only one thread should execute the method at a time. synchronized native static volatile final synchronized native static volatile final ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads What will be the output?class A extends Thread{ public void run(){ for(int i=0; i<2; i++){ System.out.println(i); } }}public class Test{ public static void main(String argv[]){ Test t = new Test(); t.check(new A(){}); } public void check(A a){ a.start(); }} Compilation succeed but runtime exception None of these 0 0 0 1 Compilation error, class A has no start method Compilation succeed but runtime exception None of these 0 0 0 1 Compilation error, class A has no start method 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 0 0 1 Compilation Error None of these 0 0 0 1 Compilation Error 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(); }} Output order is not guaranteed Compilation succeed but Runtime Exception None of these A A A A B B B B A B A B A B A B Output order is not guaranteed Compilation succeed but Runtime Exception None of these A A A A B B B B A B A B A B A B 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. } None of these true run-A true false run-A false false run-A true Compilation fails due to an error on line 7 None of these true run-A true false run-A false false run-A true Compilation fails due to an error on line 7 ANSWER DOWNLOAD EXAMIANS APP
JAVA Threads Given the code. What will be the result?public class Test implements Runnable{ public static void main(String[] args) throws InterruptedException{ Thread a = new Thread(new Test()); a.start(); System.out.print("Begin"); a.join(); System.out.print("End"); } public void run(){ System.out.print("Run"); }} "BeginEnd" is printed. An exception is thrown at runtime. "BeginRunEnd" is printed. Compilation fails. "BeginEndRun" is printed. "BeginEnd" is printed. An exception is thrown at runtime. "BeginRunEnd" is printed. Compilation fails. "BeginEndRun" is printed. ANSWER DOWNLOAD EXAMIANS APP