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

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

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"); }}

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

ANSWER DOWNLOAD EXAMIANS APP