Which of the following is NOT a benefit of ASP.NET Core?
- Cross-platform compatibility
- Improved performance and scalability
- Proprietary and closed-source
- Modular and flexible architecture
Contrary to the other options, ASP.NET Core is not a proprietary and closed-source framework. It is open-source, meaning its source code is available for public inspection and contribution. This open nature fosters community collaboration and transparency in development.
Loading...
Related Quiz
- In a scenario where the production database and development database are out of sync, what steps might you take with respect to Identity migrations?
- You're tasked with displaying a list of products on a webpage using ASP.NET Core. Which type of Razor view would be most appropriate for this task?
- You're working on an enterprise application where specific endpoints should be accessible only to users from the "HR" and "Admin" departments. How would you enforce this using the [Authorize] attribute?
- Imagine you have two route templates: /products/{id} and /products/new. An incoming request has the URL /products/new. Which route will it match and why?
- The _______ method is used to add and configure the necessary middleware for routing in ASP.NET Core.