Question

Difficulty: HardAzure Serverless Compute (Functions and Logic Apps)

A municipal utility provider is implementing a serverless IoT solution to monitor water flow telemetry and automate emergency response operations. The solution must satisfy the following technical requirements:
1. Run custom Python code to analyze incoming sensor telemetry and identify flow rate anomalies.
2. Automate a multi-step response workflow that triggers when an anomaly is found, sending a notification via Twilio, creating an incident ticket in ServiceNow, and updating a record in Microsoft SharePoint without writing custom integration code.

Which two Azure services should the provider select to fulfill these requirements? (Select two.)

  1. Azure FunctionsAnswer
  2. Azure Logic AppsAnswer
  3. C
    Azure App Service WebJobs
  4. D
    Azure Virtual Machines

Answer

Azure Functions and Azure Logic Apps are the correct services to fulfill these requirements.
The correct services are Azure Functions and Azure Logic Apps. Azure Functions is a serverless, code-first service that allows running custom code blocks (such as Python for data processing) on demand without maintaining virtual machines. Azure Logic Apps is a serverless, designer-first service used to design workflows that integrate systems, apps, and data through built-in connectors (such as Twilio, ServiceNow, and SharePoint) without writing integration code.

Step-by-Step Solution

1
Analyze the custom telemetry analysis requirement.
Identify that running custom Python code on an event-driven basis without infrastructure overhead points to Azure Functions, a code-first serverless compute service.
Azure Functions is optimized for short-running, custom-coded execution scenarios.
2
Analyze the workflow orchestration and multi-system integration requirement.
Identify that connecting multiple services (Twilio, ServiceNow, and SharePoint) without writing integration logic matches Azure Logic Apps, a designer-first serverless workflow integration tool.
Azure Logic Apps provides a visual designer and out-of-the-box connectors to orchestrate workflows across diverse SaaS and PaaS systems.

Key Concept

Azure Serverless Compute (Functions and Logic Apps)
Rate this question