AZ-204 Quiz

Functions

Question:

Let's consider a case where you're dealing with an IoT project. You're receiving huge amounts of telemetry data from IoT devices, and this data should trigger an Azure function that analyses the data in near real-time. Assuming you would need a service that can handle vast amounts of data with millisecond response times, storage should provide low latency at any scale. How would you structure the Azure function for this situation? Please provide the triggers and bindings in the given code.

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

    ILogger log)
{
    // Loop over the events array
    // For each event, process the telemetry data
    // Write the processed data to storage
}


Report a problem
Exam revision: April 11, 2025