AZ-204 Quiz

Functions

Question:

Imagine you're devising a real-time analytics solution for a social media company. They desire to oversee and scrutinize user posts and reactions instantaneously. Your assignment is to develop an Azure function that is activated by this live activity. Considering the company's requirement for low-latency data access, complex querying, and globally distributed data, which Azure services would you utilize to accomplish this task? Please provide the triggers and bindings in the given code:

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

    ILogger log)
{
    // Loop over the events array
    // For each event, analyze the event data
    // Write the analysis results to globally distributed storage
}


Report a problem
Exam revision: April 11, 2025