Microsoft Exam Questions

Which two approaches should you recommend?

You are designing an ASP.NET Web application for online image editing.
Users can upload images to the Web application and edit those images by using utilities provided by the
application.
Some utilities are processor intensive and should be offloaded to a Graphics Processing Unit (GPU).
Other utilities require the use of proprietary algorithms that must be performed on the server.
You need to design a solution for minimizing bandwidth usage and Web server response times during image
processing, while providing a responsive application.
Which two approaches should you recommend?
(Each correct answer presents part of the solution.Choose two.)

A.
Perform server-side image processing on the Web server.

B.
Perform server-side image processing on a dedicated server.

C.
Perform client-side image processing by using ASP.NET AJAX.
D. Perform client-side image processing by using Microsoft Silverlight.

Explanation:
Perform tasks that require access to the client computer, such as saving files using JavaScript or accessing the
graphical processing unit (GPU) with Silverlight.
Flash and Silverlight are capable of complex, interactive animations, high-definition video, and games. They
can also directly access some aspects of the computer that are not accessible to JavaScript, such as the video
adapter’s graphical processing unit (GPU), which isuseful for accelerating graphics displays and performing
some computations.