QUESTIONS WITH ACTUAL ANSWERS
Azure Storage - CORRECT ANSWER>>>>storage solution that supports all types of data,
including: blobs, queues, and NoSQL.
workflows - CORRECT ANSWER>>>>Business processes modeled in software are often called
Logic Apps
Microsoft Power Automate
WebJobs
Azure Functions - CORRECT ANSWER>>>>Azure includes four different technologies that
you can use to build and implement workflows that integrate multiple systems
run actions, accept inputs, include conditions, produce outputs, - CORRECT ANSWER>>>>All
workflow technologies
design-first approach - CORRECT ANSWER>>>>They both include user interfaces in which
you can draw out the workflow
Logic Apps - CORRECT ANSWER>>>>a service within Azure that you can use to automate,
orchestrate, and integrate disparate components of a distributed application
connector - CORRECT ANSWER>>>>is a Logic Apps component that provides an interface to
an external service.
Microsoft Power Automate - CORRECT ANSWER>>>>is a service that you can use to create
workflows even when you have no development or IT Pro experience.
Automated, Button, Scheduled, Business Process, - CORRECT ANSWER>>>>4 types of
workflow
Automated Flow - CORRECT ANSWER>>>>A flow that is started by a trigger from some
event.
Button flow - CORRECT ANSWER>>>>runs a repetitive task with a single click from your
mobile device.
Scheduled flow - CORRECT ANSWER>>>>A flow that executes on a regular basis such as
once a week, on a specific date, or after 10 hours.
Business process flow - CORRECT ANSWER>>>>A flow that models a business process such
as the stock ordering process or the complaints procedure.
Continuous, Triggered, - CORRECT ANSWER>>>>There are two kinds of WebJob
,WebJobs - CORRECT ANSWER>>>>are a part of the Azure App Service that you can use to
run a program or script automatically
Azure Function - CORRECT ANSWER>>>>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.
HTTPTrigger - CORRECT ANSWER>>>>Use this template when you want the code to execute
in response to a request sent through the HTTP protocol.
TimerTrigger - CORRECT ANSWER>>>>Use this template when you want the code to execute
according to a schedule.
BlobTrigger. - CORRECT ANSWER>>>>Use this template when you want the code to execute
when a new blob is added to an Azure Storage account.
CosmosDBTrigger - CORRECT ANSWER>>>>Use this template when you want the code to
execute in response to new or updated documents in a NoSQL database.
WebJobs, Functions, - CORRECT ANSWER>>>>Code-first technologies
Serverless compute - CORRECT ANSWER>>>>as a function as a service (FaaS), or a
microservice that is hosted on a cloud platform.
Serverless compute - CORRECT ANSWER>>>>a great option for hosting business logic code
in the cloud.
Durable Functions - CORRECT ANSWER>>>>that allows you to orchestrate the executions of
multiple functions without any timeout.
function app - CORRECT ANSWER>>>>Functions are hosted in an execution context called a
Consumption service plan. - CORRECT ANSWER>>>>This is the plan that you choose when
using the Azure serverless application platform. It provides automatic scaling and bills you when
your functions are running.
Azure App Service plan - CORRECT ANSWER>>>>This plan allows you to avoid timeout
periods by having your function run continuously on a VM that you define. you are responsible
for managing the app resources the function runs on.
Bindings - CORRECT ANSWER>>>>are a declarative way to connect data and services to your
function.
Trigger - CORRECT ANSWER>>>>is a special type of input binding that has the additional
capability of initiating execution
, Timer trigger - CORRECT ANSWER>>>>Execute a function at a set interval.
HTTP trigger - CORRECT ANSWER>>>>Execute a function when an HTTP request is
received.
Blob trigger - CORRECT ANSWER>>>>Execute a function when a file is uploaded or updated
in Azure Blob storage.
Queue trigger - CORRECT ANSWER>>>>Execute a function when a message is added to an
Azure Storage queue.
Azure Cosmos DB trigger - CORRECT ANSWER>>>>Execute a function when a document
changes in a collection.
Event Hub trigger - CORRECT ANSWER>>>>Execute a function when an event hub receives a
new event.
timer trigger - CORRECT ANSWER>>>>is a trigger that executes a function at a consistent
interval.
Timestamp parameter name - CORRECT ANSWER>>>>which is simply an identifier to access
the trigger in code.
Schedule - CORRECT ANSWER>>>>which is a CRON expression that sets the interval for the
timer
CRON expression - CORRECT ANSWER>>>>a string that consists of six fields that represent a
set of times.
first - CORRECT ANSWER>>>>field represents seconds. This field supports the values 0-59.
Because the field contains a zero, it selects the first possible value, which is one second.
second - CORRECT ANSWER>>>>field represents minutes. The value "*/5" contains two
special characters. First, the asterisk (*) means "select every value within the field." Because this
field represents minutes, the possible values are 0-59. The second special character is the slash
(/), which represents an increment. When you combine these characters together, it means for all
values 0-59, select every fifth value. An easier way to say that is simply "every five minutes."
last four - CORRECT ANSWER>>>>fields represent the hour, day, month, and weekday of the
week. An asterisk for these fields means to select every possible value. In this example, we select
"every hour of every day of every month."
_rid - CORRECT ANSWER>>>>The resource ID is a unique identifier that is also hierarchical
per the resource stack on the resource model. It is used internally for placement and navigation
of the item resource.