AZ-204 Quiz

← Back to Topics

Functions (1 / 54):

A media company requires an Azure function to accumulate real-time news data from various online sources (webhooks) and subsequently deposit the collected data in a particular format into a database. Given the need to store large amounts of unstructured data that will be accessed infrequently, what approach would you suggest? Please provide the triggers and bindings in the provided code:

[FunctionName("CollectNewsData")]
public static async Task<IActionResult> Run(
    /* Triggers and Bindings here */

    ILogger log)
{
    // Parse the incoming data
    // Process the news data, if necessary
    // Add the news data to storage
    // Return a success response
}


Exam revision: April 11, 2025