0
0
Azurecloud~5 mins

Function App creation in Azure - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is an Azure Function App?
An Azure Function App is a service that lets you run small pieces of code (functions) in the cloud without managing servers. It automatically scales and only charges you for the time your code runs.
Click to reveal answer
intermediate
Which hosting plan options are available when creating an Azure Function App?
You can choose between Consumption Plan (serverless, auto-scaling), Premium Plan (more powerful, always warm), and Dedicated (App Service) Plan (fixed resources).
Click to reveal answer
beginner
Why do you need a Storage Account when creating a Function App?
The Storage Account stores function code, triggers, and logs. It is required for the Function App to work properly.
Click to reveal answer
beginner
What is the purpose of the Runtime Stack setting during Function App creation?
The Runtime Stack defines the programming language and environment your function code will run on, like Node.js, Python, or .NET.
Click to reveal answer
intermediate
How does Azure Function App scaling work in the Consumption Plan?
In the Consumption Plan, Azure automatically adds or removes compute resources based on the number of incoming events, so your app scales out when needed and scales in when idle.
Click to reveal answer
What is the main benefit of using an Azure Function App?
ARun code without managing servers
BStore large files
CCreate virtual machines
DManage databases
Which Azure service must you create alongside a Function App to store its code and logs?
AVirtual Network
BApp Service Plan
CSQL Database
DStorage Account
Which hosting plan automatically scales your Function App based on demand?
ADedicated Plan
BConsumption Plan
CPremium Plan
DBasic Plan
What does the Runtime Stack setting specify when creating a Function App?
AScaling rules
BStorage location
CProgramming language environment
DNetwork settings
Which of these is NOT a valid trigger type for Azure Functions?
AVirtual Machine Trigger
BTimer Trigger
CHTTP Trigger
DBlob Storage Trigger
Explain the steps and key settings needed to create an Azure Function App.
Think about what resources and options you must pick before your function can run.
You got /5 concepts.
    Describe how Azure Function App scaling works in the Consumption Plan and why it is useful.
    Consider how the app adjusts resources when traffic changes.
    You got /5 concepts.