When you await a Task, if that Task has already completed, execution simply continues. Otherwise, control returns to ________ until the result of the Task is available. Once the Task completes, the async method continues execution.

a) the async method
b) the await clause
c) the async method’s caller
d) the await method’s caller


c) the async method’s caller

Computer Science & Information Technology

You might also like to view...

All of Java's control statements can be nested.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A variable that keeps track of whether a certain situation has occurred is called

(A) a counter. (B) an accumulator. (C) a switch. (D) a flag.

Computer Science & Information Technology

By default, OpenOffice Writer displays three toolbars—the Standard, Formatting, and Fine toolbars

Indicate whether the statement is true or false

Computer Science & Information Technology

Modify example program 2 to average four numbers read from a list.

Add a fourth value to the data list
Replace DO WHILE count < 3	with DO WHILE count < 4

Computer Science & Information Technology