In the MVC pattern, the _________ is responsible for rendering the user interface of the application.
- Model
- View
- Controller
- Middleware
In the MVC (Model-View-Controller) pattern, the "View" is responsible for rendering the user interface of the application. Views are responsible for presenting data to the user in a format that is suitable for display, such as HTML templates or Razor pages.
Loading...
Related Quiz
- Which tool among the following is primarily a command-line tool for .NET operations?
- You are working on an ASP.NET Core web API project, and you realize that direct database operations can expose sensitive information in the error messages to the clients. How can you ensure that Entity Framework Core doesn't throw detailed database errors to the client?
- In ASP.NET Core Identity, to create a user with specific claims, one can use the 'AddClaimsAsync' method after the user has been created using _________ method.
- Which method is used to add MVC route handlers and specify the use of default routes?
- You're working on a .NET project with a team and want to ensure everyone uses the same .NET SDK version. What file, when added to your project, can specify the SDK version developers should use?