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 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 start() method is not defined.
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?

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

ANSWER DOWNLOAD EXAMIANS APP