Practice free →
HomeAzure AZ-204cloudcomputingaz204compute › Which Azure Functions binding accepts the functi…

Which Azure Functions binding accepts the function's return value and writes it to a destination (e.g. Cosmos DB, Service Bus) WITHOUT explicit SDK calls in the code?

AWriting to local disk and uploading via cron
BOutput bindings (declarative)
CDisabling auth
DCalling the SDK directly in the function body
Answer & Solution
Correct answer: B. Output bindings (declarative)
Output bindings declaratively bind the function's return / out-parameter to a target service. SDK calls work but skip the binding boilerplate; the other options are anti-patterns.
Solve this in the app — Azure AZ-204 practice & 24k+ MCQs →
Related questions