What is the primary role of the "View" in the MVC design pattern?
- Handling User Input
- Displaying Data
- Managing Application Logic
- Routing Requests
The primary role of the "View" in the MVC design pattern is to display data to the user. It is responsible for presenting information in a user-friendly manner and does not handle user input or application logic. Instead, it relies on the "Controller" to provide the data to be displayed.
Loading...
Related Quiz
- The default convention in ASP.NET Core MVC looks for views in the _________ folder.
- Which Razor directive is typically used at the beginning of a view file to specify its layout page?
- Which internal web server is associated with ASP.NET Core by default?
- For developers using Visual Studio, the _________ window provides a REPL environment for C# scripting.
- In ASP.NET Core Identity, the _________ option can be used to enforce password histories, ensuring users don't reuse recent passwords.