Developer Cards Flashcards
What are two cons of serverless?
- Non-persistent
2. Non-continuous execution
Which four services are automation of prosesses?
- Microsoft Power Automate
- Azure Logic App
- Azure Function
- App Service WebJobs
Which service for automation of prosesses is design-first?
- Microsoft Power Automate
2. Azure Logic Apps
Which service for automation of prosesses is code-first?
- Azure Functions
2. App Service WebJobs
What is the difference between Azure Functions and App Service WebJobs?
- Azure Functions: scales automatically
- App Service WebJobs: does not scale automatically
Which service to choose if design-first and users will develop the workflow?
Microsoft Power Automate
Which service to choose if design-first and developers will develop the workflow?
Azure Logic App
Which service to choose if code-first and part of an existing App Service app?
App Service WebJobs
Which service to choose if code-first and need to customize JobHost?
Azure Function
Which service automates, orchestrate and integrate components with designing workflows graphical or in JSON?
Azure Logic App
Which service can create workflow with almost no development or IT experience?
Azure Logic App
Which service is part of Azure App Service to run program or script automatically?
App Service WebJobs
Which service runs simple code in cloud without infrastructure?
Azure Functions
What is it called when a cloud provider manages provisioning and maintenance of infrastructure?
Serverless computing
What are some benefits of serverless computing?
- Fully managed
- Pay-for-use
- Elastic
- Stateless logic
- Event driven
- Functions can be re-used
What are drawbacks of serverless computing?
- Execution time
2. Execution frequency
What is an execution context that hosts functions?
Function app
What logically structures functions and compute resources?
Function app
What service plan runs a function continuously on a VM?
Azure App Service plan
What service plan is serverless, elastic payment and has timeout?
Consumption Service plan
How many triggers can a function have?
1
What connects data and services to functions?
Bindings
In what format are bindings written?
JSON
What objects define how Azure functions are invoked?
Triggers