Inle Choices
Answer (Choose 1 answer)
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 delegate as a constructor argument.
Step 3. Create a new Parameterized ThreadStart (ThreadStart) delegate, passing the address of the method 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 referenced by the delegate created in Step 2 as soon as possible.
Choosing the correct order of steps.
A. 1-4-5->2->3
B. 1-5-3 -> 2-> 4
C. 1-3-2 -> 4->5
D. 1->2->3-> 5->4
Q: 22