Question: Run a program with the following instructions: GreetingRunnable r1 = new GreetingRunnable(Hello); GreetingRunnable r2 = new GreetingRunnable(Goodbye); r1.run(); r2.run(); Note that the threads don't run
Run a program with the following instructions:

GreetingRunnable r1 = new GreetingRunnable("Hello"); GreetingRunnable r2 = new GreetingRunnable("Goodbye"); r1.run(); r2.run(); Note that the threads don't run in parallel. Explain.
Step by Step Solution
3.34 Rating (151 Votes )
There are 3 Steps involved in it
The instructions provided in the image show the creation of two objects r1 and r2 of a class named G... View full answer
Get step-by-step solutions from verified subject matter experts
