Developing ASP.NET MVC Web Applications — Question 39
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?
Answer options
- 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.
Correct answer: C
Explanation
The correct answer is C because bundling content files into a single .tar file reduces the number of requests made to the server, improving load times. Options A and B may help with performance but do not address the specific need for reducing multiple requests. Option D could be beneficial, but it is not as effective as bundling in this context.