exam questions

Exam AZ-204 All Questions

View all questions & answers for the AZ-204 exam

Exam AZ-204 topic 2 question 35 discussion

Actual exam question from Microsoft's AZ-204
Question #: 35
Topic #: 2
[All AZ-204 Questions]

DRAG DROP -
You are developing an Azure Function app.
The app must meet the following requirements:
✑ Enable developers to write the functions by using the Rust language.
✑ Declaratively connect to an Azure Blob Storage account.
You need to implement the app.
Which Azure Function app features should you use? To answer, drag the appropriate features to the correct requirements. Each feature may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
abdou1987
Highly Voted 3 years, 4 months ago
Box 1: Custom handler Custom handlers can be used to create functions in any language or runtime by running an HTTP server process, for example Go or Rust. Box 2: extension bundles is needed to support the bindings and triggers that you use https://docs.microsoft.com/en-us/azure/azure-functions/functions-custom-handlers?WT.mc_id=thomasmaurer-blog-thmaure#bindings-support
upvoted 84 times
[Removed]
1 year, 8 months ago
https://learn.microsoft.com/en-us/azure/azure-functions/functions-custom-handlers - With custom handlers, you can use triggers and input and output bindings via extension bundles. So: Custom Handler and Extension bundles.
upvoted 3 times
...
Stel0Papad4
4 months, 3 weeks ago
It may be so but, ultimately you do need Triggers to do Box 2's action so, maybe the Trigger option is the correct answer for Box 2.
upvoted 2 times
Stel0Papad4
4 months, 3 weeks ago
(+in addition) It's like asking me --> To create a VM you need to use the portal or the bash and im telling you that no you cant use them. You need to have a subscription first. The correct answer is the subscription :P
upvoted 1 times
...
...
...
mlantonis
Highly Voted 3 years, 4 months ago
Answer is correct. Box 1: Custom handler Custom handlers can be used to create functions in any language or runtime by running an HTTP server process, for example Go or Rust. Box 2: Trigger Functions are invoked by a trigger and can have exactly one. In addition to invoking the function, certain triggers also serve as bindings. You may also define multiple bindings in addition to the trigger. Bindings provide a declarative way to connect data to your code. Reference: https://docs.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-other https://docs.microsoft.com/en-us/dotnet/architecture/serverless/azure-functions
upvoted 75 times
Esward
1 year, 8 months ago
Agreed
upvoted 1 times
...
TakumaK
3 years, 4 months ago
incorrect!
upvoted 2 times
stevenwu
3 years, 4 months ago
What's your answer? You can just point out incorrect without any updates.
upvoted 18 times
...
azurelearner666
3 years, 4 months ago
your incorrect is incorrect X2. The answer is correct, Custom Handler for supporting additional languages in azure functions and a trigger for adding a binding to a function.
upvoted 11 times
aruni_mishra
1 year, 11 months ago
BOX 2: extension bundles from MS: With custom handlers, you can use triggers and input and output bindings via extension bundles. https://learn.microsoft.com/en-us/azure/azure-functions/functions-custom-handlers?WT.mc_id=thomasmaurer-blog-thmaure#bindings-support:~:text=With%20custom%20handlers%2C%20you%20can%20use%20triggers%20and%20input%20and%20output%20bindings%20via%20extension%20bundles.
upvoted 7 times
...
...
...
mmdex
1 year, 8 months ago
Box 2: Extension Bundles Yes, you could use a Trigger, but then you have only ONE trigger per function. The question says nothing about how the function is being triggered, only that you need to connect to Blob Storage. What if you wanted to trigger the function by HTTP request and then perform some action in Blob Storage? You can't do that with Blob Storage trigger.
upvoted 8 times
...
...
neelkanths
Most Recent 6 months ago
Box2: extension bundles - As per question it is looking to connect declaritively with blob storage account, to connect declaritively one need to use bindings - as per below article https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings?tabs=isolated-process%2Cpython-v2&pivots=programming-language-csharp therefore trigger can't be the answer.
upvoted 1 times
...
FeriAZ
8 months, 1 week ago
Custom Handler. Extension Bundle. To "declaratively connect" to an Azure Blob Storage account refers to the ability to specify in the function's configuration how and to what resources the function connects, without needing imperative programming to establish the connection. While a trigger can start a function based on activity in a Blob Storage (like creating or adding a new blob), it's the bindings that are more directly involved in the declarative connection to data sources or sinks.
upvoted 3 times
...
AhmedAbdelAziz
8 months, 3 weeks ago
Box 1: Custom handler Box 2: trigger extension bundles allow you to use trigger in the custom handler but it can't do the job alone you have to use trigger to fire the function Custom handlers are best suited for situations where you want to: -Implement a function app in a language that's not currently offered out-of-the box, such as Go or Rust. -Implement a function app in a runtime that's not currently featured by default, such as Deno. With custom handlers, you can use triggers and input and output bindings via extension bundles. https://learn.microsoft.com/en-us/azure/azure-functions/functions-custom-handlers
upvoted 1 times
...
shekhar11
1 year, 1 month ago
Question in my exam on 22sept 2023
upvoted 3 times
...
Tarajee
1 year, 1 month ago
Got this on 2023sept
upvoted 4 times
...
Kanasan
1 year, 1 month ago
For the second I vote for 'Trigger': https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings?tabs=isolated-process%2Cpython-v2&pivots=programming-language-csharp#add-bindings-to-a-function
upvoted 1 times
...
kvtborad
1 year, 2 months ago
I got this question on 6th August 2023. chose highly voted. passed with 904. I got Case study: city. All questions are from ExamTopics.
upvoted 1 times
RikinPatel
1 year ago
There are 2 most voted ans.. so can you please specify which most voted you have selected?
upvoted 5 times
...
...
Firo
1 year, 3 months ago
Can anyone mentioned what the answer is for box2, there are 2 answers that got most voted which one is the correct one.
upvoted 2 times
...
JH81
1 year, 3 months ago
Got this on 6/28/2023 and passed with 850. Went with highly voted answer.
upvoted 1 times
...
tom112
1 year, 5 months ago
For Box 2: Trigger. (But Binding would make more sense if there is.) Extension bundles allow non-.NET functions apps to use the same bindings without having to deal with the .NET infrastructure. -> so it's not for general trigger or bindings setting. Reference: Register Azure Functions binding extensions https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-register
upvoted 1 times
...
aragones
1 year, 5 months ago
Got this 2023-05-12. FYI: case: You need to configure authorization. case: You need to ensure the app does not time out and processes the blob data case study: VanArsdel Inc Canada
upvoted 1 times
...
adilkhan
1 year, 7 months ago
Box 1: Custom handler Box 2: extension bundles CHATGPT
upvoted 1 times
...
saravanasanthosh
1 year, 9 months ago
Got this on exam 12/30/2022
upvoted 2 times
...
OPT_001122
1 year, 11 months ago
Box 2: extension bundles or Triggers? which one is correct ? both answers are highly voted with valid comments
upvoted 2 times
guchao2000
1 year, 9 months ago
Trigger https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-other?tabs=rust%2Cwindows
upvoted 1 times
...
...
[Removed]
2 years ago
It has to be custom handler and extension bundle if the question has to be read together. But another of those questions that does not make much sense. People who want to create in RUST should use an app service instead of using a function app. It does not add a lot of value to play into these dark areas. Microsoft just adds features that are half baked instead of focusing on fixing the issues or making things consistent. Bad product management.
upvoted 5 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago