(Choose 1 answer)
A. 1-3-2-4-5
B. 1-5-3-2-> 4
C. 1-4-5->2->3
D. 1-2-3-5->4
For steps are used to create a Thread as the following:
Step 1. Create a type method to be the entry point for the new thread.
Step 2. Create a Thread object, passing the ParameterizedThreadStart/ThreadStart dele argument.
Step 3. Create a new ParameterizedThreadStart (ThreadStart) delegate, passing the ad defined in step 1 to the constructor.
Step 4. Establish any initial thread characteristics (name, priority, etc.)
Step 5. Call the Thread.Start() method. This starts and creates the thread at the method delegate created in Step 2 as soon as possible.
Choosing the correct order of steps.
Finish