AZ-204 Quiz

Functions

Question:

You've been tasked with developing a system to handle real-time reactions to blog posts on a website. The system needs to notify all registered users whenever a new blog post is published. What Azure services would you recommend to set up the Azure function? Fill in the triggers and bindings in the following code:

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

    ILogger log)
{
    // Process the incoming event
    // Prepare the notification based on the blog post data
    // Use HttpClient to send the notification to all registered users
}


Report a problem
Exam revision: April 11, 2025