0
0
Azurecloud~5 mins

Trigger types (HTTP, Timer, Blob, Queue) in Azure - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is an HTTP trigger in Azure Functions?
An HTTP trigger starts a function when it receives an HTTP request, like when you open a webpage or send data from a form.
Click to reveal answer
beginner
How does a Timer trigger work in Azure Functions?
A Timer trigger runs a function on a schedule, like every hour or every day, similar to setting an alarm clock.
Click to reveal answer
beginner
What happens when a Blob trigger is used?
A Blob trigger runs a function when a file (called a blob) is added or changed in Azure Storage, like noticing when a new photo is uploaded.
Click to reveal answer
beginner
Explain the Queue trigger in Azure Functions.
A Queue trigger starts a function when a new message arrives in an Azure Storage queue, like getting a new task in a to-do list.
Click to reveal answer
beginner
Which trigger type would you use to run a function every day at 8 AM?
You would use a Timer trigger because it can run functions on a set schedule, like daily at 8 AM.
Click to reveal answer
Which Azure Function trigger starts a function when a new HTTP request is received?
AHTTP trigger
BTimer trigger
CBlob trigger
DQueue trigger
What does a Timer trigger do?
ARuns a function when a file is uploaded
BRuns a function on a schedule
CRuns a function when a message arrives in a queue
DRuns a function when an HTTP request is received
Which trigger would you use to react to a new file added to Azure Storage?
ABlob trigger
BTimer trigger
CQueue trigger
DHTTP trigger
What event causes a Queue trigger to start a function?
AA new HTTP request
BA scheduled time
CA new message in a queue
DA new file uploaded
Which trigger type is best for running a function every 10 minutes?
AQueue trigger
BHTTP trigger
CBlob trigger
DTimer trigger
Describe the four main Azure Function trigger types: HTTP, Timer, Blob, and Queue.
Think about what event causes each trigger to start the function.
You got /4 concepts.
    Give a real-life example for when you would use each Azure Function trigger type.
    Imagine simple daily tasks or apps you use.
    You got /4 concepts.