You are developing an ASP.NET application that allows users to download Microsoft Azure log files. You need
to improve the performance of the application.
What should you do?
A.
Minify the content files.
B.
Enable compression in IIS.
C.
Bundle the content files into a single .tar file.
D.
Host the image, JavaScript, and CSS files on a different server.
Explanation:
Bundling is a new feature in ASP.NET 4.5 that makes it easy to combine or bundle multiple files into a single
file. You can create CSS, JavaScript and other bundles. Fewer files means fewer HTTP requests and that can
improve first page load performance.
https://www.asp.net/mvc/overview/performance/bundling-and-minification
The answer should be B.
Bundling does not mean making a tar ball.