JAVA Threads
Analyze the following code:public abstract class Test implements Runnable{ public void doSomething() { };}

None of these
The program compiles fine.
The program will not compile because it does not implement the run() method.
The program will not compile because it does not contain abstract methods.

ANSWER DOWNLOAD EXAMIANS APP

JAVA Threads
What notifyAll() method do?

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
Wakes up all threads that are waiting on this object's monitor

ANSWER DOWNLOAD EXAMIANS APP