Services
Discover
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Visual C# How to Program
Exam 23: Asynchronous Programming With Async and Await
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
A MethodInvoker (namespace System.Windows.Forms) is a ________.
Question 22
Multiple Choice
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.
Question 23
Multiple Choice
When updating a control from a non-GUI thread,you must ________.
Question 24
Multiple Choice
An async method executes its body in ________.
Question 25
Multiple Choice
Executing calculations in multiple threads on a single-core processor can actually take ________ compared to simply performing them synchronously,due to the overhead of sharing one processor among the app's threads,all the other apps executing on the computer at the same time and the chores the operating system was performing.
Question 26
Multiple Choice
________ programming is a technique for writing apps containing tasks that can execute asynchronously,which can improve app performance and GUI responsiveness in apps with long-running or compute-intensive tasks.