public class Threads2 implements Runnable { public void run() { System.out.println(“run.”); throw new RuntimeException(“Problem”); Which among the following is true? } public static void main(String[] args) { Thread t = new Thread(new Threads2()); t.start(); System.out.println(“End of method.”); } }

A) java.lang.RuntimeException: Problem

B) run. java.lang.RuntimeException: Problem

C) End of method. java.lang.RuntimeException: Problem

D) End of method. run. java.lang.RuntimeException: Problem

View Answer
Option – D.