Microsoft
70-519 · Question #190
You are evaluating an ASP.NET Web application that includes three methods: - Calculate() performs CPU-intensive calculations on the server. - GetData() retrieves data from a server-side data store…
The correct answer is A. Asynchronous processing for the GetData() and WriteData() methods. See the full explanation below for the reasoning.
Question
You are evaluating an ASP.NET Web application that includes three methods:
- Calculate() performs CPU-intensive calculations on the server.
- GetData() retrieves data from a server-side data store and returns an
XML file.
- WriteData() receives an XML file and writes data from the file to a
server-side data store. You need to recommend an approach for maximizing server throughput. What should you recommend?
Options
- AAsynchronous processing for the GetData() and WriteData() methods.
- BAsynchronous processing for the GetData() and Calculate() methods.
- CSynchronous processing for the WriteData() and Calculate() methods.
- DSynchronous processing for the GetData() and Write Data() methods.
How the community answered
(57 responses)- A79% (45)
- B12% (7)
- C4% (2)
- D5% (3)
Community Discussion
No community discussion yet for this question.