Which code segment should you insert at line 09?

You are developing an application that will use multiple asynchronous tasks to optimize performance.
You create three tasks by using the following code segment. (Line numbers are included for reference only.)

You need to ensure that the ProcessTasks() method waits until all three tasks complete before continuing.
Which code segment should you insert at line 09?

You are developing an application that will use multiple asynchronous tasks to optimize performance.
You create three tasks by using the following code segment. (Line numbers are included for reference only.)

You need to ensure that the ProcessTasks() method waits until all three tasks complete before continuing.
Which code segment should you insert at line 09?

A.
Task.WaitFor(3);

B.
tasks.Yield();

C.
tasks.WaitForCompletion();

D.
Task.WaitAll(tasks);



Leave a Reply 1

Your email address will not be published. Required fields are marked *


didii

didii

A better solution could be to make ProcessTasks async and use await Task.WhenAll(tasks) instead so you don’t block a thread.