Questions (Frequently Tested)
with Verified Answers Graded
A+
Which AZ products support design-first approach to designing apps? - Answer: Logic Apps and
MS Power Automate. In which you can draw ouit the workflow.
What are Logic Apps for? - Answer: To automate, orchestrate and integrate disparate
components of a distributed application.
How Logic Apps interface to components it controls or receives information from? - Answer:
Through connectors, e.g. twitter connector, Office 365 Outlook connector, etc.
Who Microsoft Power Automate is useful for? - Answer: It is a service that you can use to create
workflows even when you have no development experience.
What 4 types of flow Microsoft Power Automate provide? - Answer: Automated: a flow that is
started by a trigger from some event.
Button: run a repetitive task with a single click from your mobile device.
Sheduled: a flow that executes on a regular basis such as once a week, specified date or after 10
hours.
Business process: a flow that models a business process.
, What Microsoft Power Automate is built on? What it means? - Answer: Logic Apps. That means
it supports the same range of connectors and actions.
What is Azure App Service for? - Answer: Cloud-based hosting service for web applications,
mobile back-ends and RESTful APIs. These applications often need to perform some kind of
background task.
What are WebJobs used for (two types)? - Answer: Continuous: run in a loop.
Triggered: run when manually start them or on a schedule.
What Azure Functions allow you? - Answer: It is a simple way for you to run small pieces of code
in the cloud, without having to worry about the infrastructure required to host that code.
Do WebJobs support automatic scaling? - Answer: No
Do WebJobs support pay-per-use pricing? - Answer: No
Can you integrate WebJobs with Logic Apps? - Answer: No
Power Automate, Logic Apps, Web Apps, Functions. Which two are best for design-first
development? - Answer: Power Automate and Logic Apps
Power Automate, Logic Apps, Web Apps, Functions. Which two are best for code-first
development? - Answer: Web Apps and Functions
What are the main drawbacks of functions? - Answer: Execution time (timeout of 5 mintues -
max 10). If initiated by HTTP timeout is only 2.5 minutes. Durable functions have no timeouts.
Execution frequency when scaling only one function app instance can be created every 10
seconds for up to 200 total instances.