Developing ASP.NET MVC Web Applications — Question 3

You are designing a distributed application.
The application must store a small amount of information that is shared across all users and does not change frequently.
You need to configure the application to meet the requirements.
Which server-side state management options will achieve the goal? Each correct answer presents a complete solution. Choose all that apply.

Answer options

Correct answer: A, D

Explanation

The correct answers are A and D. Database support allows for persistent storage of shared information, while Application state provides a way to store data that is globally accessible and does not change often. Profile properties and Session state are designed for user-specific data and transient information, respectively, making them unsuitable for this scenario.