Exam 23: Asynchronous Programming With Async and Await
Exam 1: Introduction to Computers, the Internet and Visual C#49 Questions
Exam 2: Dive Into Visual Studio Community25 Questions
Exam 3: Introduction to C# Apps41 Questions
Exam 4: Introduction to Classes,Objects,Methods and Strings50 Questions
Exam 5: Control Statements: Part 194 Questions
Exam 6: Control Statements: Part 266 Questions
Exam 7: Methods: a Deeper Look95 Questions
Exam 8: Arrays;Introduction to Exception Handling90 Questions
Exam 9: Introduction to Linq and Generic Collections27 Questions
Exam 10: Classes and Objects: A Deeper Look79 Questions
Exam 11: Object-Oriented Programming: Inheritance51 Questions
Exam 12: Object-Oriented Programming: Polymorphism62 Questions
Exam 13: Exception Handling: A Deeper Look58 Questions
Exam 14: GUI With Windows Forms: Part 164 Questions
Exam 15: GUI With Windows Forms: Part 273 Questions
Exam 16: Strings,Characters and Regular Expressions92 Questions
Exam 17: Files and Streams39 Questions
Exam 18: Searching and Sorting19 Questions
Exam 19: Data Structures28 Questions
Exam 20: Generics22 Questions
Exam 21: Collections35 Questions
Exam 22: Databases and LING25 Questions
Exam 23: Asynchronous Programming With Async and Await37 Questions
Exam 24: XML72 Questions
Exam 25: GUI With Windows Presentation Foundation60 Questions
Select questions type
A MethodInvoker (namespace System.Windows.Forms)is a ________.
(Multiple Choice)
4.9/5
(28)
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.
(Multiple Choice)
4.8/5
(33)
When updating a control from a non-GUI thread,you must ________.
(Multiple Choice)
4.9/5
(32)
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.
(Multiple Choice)
4.7/5
(35)
________ 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.
(Multiple Choice)
4.8/5
(34)
Tasks that proceed independently of one another are said to execute ________ and are referred to as ________ tasks.
(Multiple Choice)
4.8/5
(38)
The _________ delegate represents any method that takes no arguments and returns a result.
(Multiple Choice)
4.9/5
(33)
A ListBox's ________ property indicates the source of the data that populates the ListBox's Items collection.
(Multiple Choice)
4.8/5
(25)
Class HttpClient's ________ method starts a new Task< string > in a separate thread and uses the URL specified as the method's string argument to request information from a web server.
(Multiple Choice)
4.8/5
(31)
A ListBox's ________ property indicates which property of each item in the data source should be displayed in the ListBox.
(Multiple Choice)
4.8/5
(31)
An async method can perform other statements between those that launch an asynchronous Task and await the Task's results.In such as case,the method continues executing those statements after launching the asynchronous Task until it reaches ________.
(Multiple Choice)
4.7/5
(35)
If a long-running calculation were to be performed synchronously in a GUI app,________.
(Multiple Choice)
4.9/5
(39)
A method is declared async to indicate to the compiler that the method will ________.
(Multiple Choice)
4.8/5
(41)
Many classes for web access,file processing,networking,image processing and more contain methods that return ________ objects for use with async and await,so you can take advantage of the asynchronous programming model.
(Multiple Choice)
4.9/5
(28)
You can wait for multiple Tasks to complete by awaiting the result of Task static method ________.
(Multiple Choice)
4.9/5
(35)
Showing 21 - 37 of 37
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)