You've been tasked to deploy an ASP.NET Core application to a cloud platform that supports scaling out based on demand, but you want to minimize management overhead. Which service would be the best fit?
- Azure Kubernetes Service (AKS)
- Azure Functions
- Azure App Service
- Azure Virtual Machines (VMs)
In this scenario, Azure App Service would be the best fit. Azure App Service is a platform-as-a-service (PaaS) offering that abstracts much of the infrastructure management. It allows you to easily deploy and scale web applications without the overhead of managing virtual machines or container orchestrators like AKS.
Loading...
Related Quiz
- For a scenario where you want to return different types of responses (e.g., JSON or HTML) based on some conditions, which action result provides the flexibility to achieve this?
- If you needed to add a user to a specific role immediately after creating them programmatically, which method of the UserManager class would you use?
- After writing your ASP.NET Core application code, you want to build and run your application using a command-line tool. Which tool would you use for this purpose?
- Your college project involves creating a simple blog. Which ASP.NET Core template provides functionalities like user comments and posts out of the box?
- In the context of ASP.NET Core MVC, where are the business rules and logic typically located?