AZ-204 Quiz

Functions

Question:

You've been assigned a project where your task is to design an Azure function that activates automatically every 10 minutes. This function has to interact with a vast amount of unstructured data such as text or binary data from a source, perform necessary computations, and subsequently modify another source with the outcome. Now, in the context of this task, provide the appropriate triggers and bindings in the following code:

[FunctionName("ProcessData")]
public static void Run(
    /* Triggers and Bindings here */

    ILogger log)
{
    // Read data from input
    // Process the data
    // Write the processed data to output
}


Report a problem
Exam revision: April 11, 2025