JAVA Threads
Which of the following are methods of the Thread class?1) yield()2) sleep(long msec)3) go()4) stop()

3 only
1 , 2 and 4
1 and 3
None of these

ANSWER DOWNLOAD EXAMIANS APP

JAVA Threads
What will be the output after compiling and executing the following code?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"); }}

An exception is thrown at runtime.
"BeginRunEnd" is printed.
Compilation fails.
"BeginEndRun" is printed.
"BeginEnd" is printed.

ANSWER DOWNLOAD EXAMIANS APP

JAVA Threads
What notifyAll() method do?

Wakes up all threads that are waiting on this object's monitor
None of these
Wakes up all threads that are not waiting on this object's monitor
Wakes up one threads that are waiting on this object's monitor

ANSWER DOWNLOAD EXAMIANS APP