And given the following five fragments:
I. new Starter().run();
II. new Starter().start();
III. new
Thread(new Starter());
IV. new Thread(new Starter()).run();
V. new Thread(new Starter()).start();
When the five fragments are inserted, one at a time at line 9, which are true? (Choose all that apply.)
A. All five will compile
B. Only one might produce the output 4 4
C. Only one might produce the output 4 2
D. Exactly two might produce the output 4 4
E. Exactly two might produce the output 4 2
F. Exactly three might produce the output 4 4
G. Exactly three might produce the output 4 2
the answer is C and D
But im unable to understand how we get 4 2 and 4 4..how this Id is obtained
PLEASE EXPLAIN IN DETAIL