AZ-101 · Question #11
You are building a custom Azure function app to connect to Azure Event Grid. You need to ensure that resources are allocated dynamically to the function app. Billing must be based on the executions…
The correct answer is A. the Windows operating system and the Consumption plan hosting plan. Azure Functions runs in two different modes: Consumption plan and Azure App Service plan. The Consumption plan automatically allocates compute power when your code is running. Your app is scaled out when needed to handle load, and scaled down when code is not running. Incorrect…
Question
You are building a custom Azure function app to connect to Azure Event Grid. You need to ensure that resources are allocated dynamically to the function app. Billing must be based on the executions of the app. What should you configure when you create the function app?
Options
- Athe Windows operating system and the Consumption plan hosting plan
- Bthe Windows operating system and the App Service plan hosting plan
- Cthe Docker container and an App Service plan that uses the B1 pricing tier
- Dthe Docker container and an App Service plan that uses the S1 pricing tier
How the community answered
(29 responses)- A86% (25)
- B3% (1)
- C7% (2)
- D3% (1)
Explanation
Azure Functions runs in two different modes: Consumption plan and Azure App Service plan. The Consumption plan automatically allocates compute power when your code is running. Your app is scaled out when needed to handle load, and scaled down when code is not running. Incorrect Answers: B: When you run in an App Service plan, you must manage the scaling of your function app. https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-first-azure-function
Topics
Community Discussion
No community discussion yet for this question.