Multi Threading
© examsiri.com
Question : 2 of 44
Marks:
+1,
-0
Given:
Which two can be results? (Choose two.)
1. public class Threads2 implements Runnable {
2.
3.   public void run() {
4.    System.out.println("run.");
5.    throw new RuntimeException("Problem");
6.   }
7.   public static void main(String[] args) {
8.    Thread t = new Thread(new Threads2());
9.    t.start();
10.    System.out.println("End of method.");
11.   }
12. }Which two can be results? (Choose two.)
Go to Question: