You are developing an ASP.NET MVC web application in Visual Studio 2012. The application requires several
thousand content files. All content is hosted on the same IIS instance as the application. You detect
performance issues when the application starts. Youneed to resolve the performance issues.
What should you do?

A.
Implement HTTP caching in the ASP.NET MVC controllers.
B.
Combine the content files by using ASP.NET MVC bundling.
C.
Install a second IIS instance.
D.
Move the content to a Windows Azure CDN.
B.
0
0
Shouldn’t the answer be D?
0
0
No,
The answer should be B because the question says performance issues when the application starts- so these must be caused by too many scripts or styles being loaded and MVC bundling bundles all of them- thereby enhancing performance.
1
0
exactly…
0
0
Besides, part of that new 231Q 70-486 dumps are available here:
https://drive.google.com/open?id=0B-ob6L_QjGLpflNtUWtkNlk3ODJFY0pqOUhqVFEwc0lrd0QtamRxUHFLLUdWZEVDaGtlQWM
Best Regards!
0
0
Bundling and minification are two techniques you can use in ASP.NET 4.5 to improve request load time. Bundling and minification improves load time by reducing the number of requests to the server and reducing the size of requested assets (such as CSS and JavaScript.)
https://docs.microsoft.com/en-us/aspnet/mvc/overview/performance/bundling-and-minification
0
0