Developing ASP.NET MVC Web Applications — Question 176
You are designing a distributed application.
The application must store a small amount of insecure global information that does not change frequently.
You need to configure the application to meet the requirements.
Which server-side state management option should you use? (Each correct answer presents a complete solution. Choose all that apply.)
Answer options
- A. Application state
- B. Session state
- C. Database support
- D. Profile properties
Correct answer: A, C
Explanation
The correct options are Application state and Database support because they are suited for storing global information that doesn't change often. Session state, on the other hand, is intended for user-specific data and is temporary, while Profile properties are used for user profile information, making them unsuitable for this scenario.