AZ-204 Quiz

Functions

Question:

A company requires a function that can process incoming files automatically. They upload images regularly into a storage service, and they want those images to be resized automatically. Which Azure service could you use to trigger this function? Fill in the triggers and bindings in the following code:

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

    string name,
    ILogger log)
{
    // Read the input image
    // Resize the image
    // Write the resized image to output image
}


Report a problem
Exam revision: April 11, 2025