Developing ASP.NET MVC Web Applications — Question 7

You are designing a ASP.NET Core MVC application that runs on the Microsoft Azure platform.
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.
NOTE: Each correct selection is worth one point.

Answer options

Correct answer: B, D

Explanation

The correct answers are B and D because both Azure SQL Database and ASP.NET application state are suitable for storing shared data that does not change frequently. HTTP Cookie is user-specific and not suitable for shared data, while ASP.NET session state is designed for user-specific data and does not meet the requirement for shared information.