Thread myT = new Thread();
A. The myT is now in a runnable state.
B. The myT has the NORM_PRIORITY priority.
C. If myT.start() is called, the run method in the Thread class will be executed.
D. If myT.start() is called, the run method in the calling class will be executed.