If you supply a target object when you create a new
Thread, as in:
Thread t = new Thread(targetObject);
What
test of instanceof does targetObject have to pass for this to be legal?
Select the one right answer.
a. targetObject instanceof Thread--true
b. targetObject instanceof Object--true
c. targetObject instanceof
Applet d. targetObject instanceof Runnable//true
e. targetObject instanceof
String //true
My answers are based on the ctors that are passed
Am i correct???