Question: 19 What does the following code print? class TestThread extends Thread public void run0) System.out.println(Running), private void method(O System.out.println(Done), public static void main (Stringl] args)

19 What does the following code print? class TestThread extends Thread public void run0) System.out.println("Running"), private void method(O System.out.println("Done"), public static void main (Stringl] args) TestThread t - new TestThread); t.start(), t.method0; prints Running prints Done O prints Running followed by Done O prints Done followed by Running O prints Running and Done but it is not possible to determine the order
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
