An online hotel booking platform is building an automated guest feedback system. The solution has the following requirements:
1. A visual, designer-first orchestration engine to integrate customer reviews with external CRM software.
2. A custom-coded JavaScript function that runs on demand to parse feedback sentiment.
Which of the following Azure serverless services should the platform use to meet these requirements? (Select two)
- Azure Logic AppsAnswer
- Azure FunctionsAnswer
- CAzure Virtual Machines
- DAzure App Service
Answer
Azure Logic Apps and Azure Functions are the correct choices. Azure Logic Apps is used for designer-first workflow orchestration, and Azure Functions is used for custom, event-driven serverless code execution.
Azure Logic Apps is a designer-first serverless integration service that enables the visual design of workflows using built-in connectors to orchestrate tasks across applications. Azure Functions is a code-first serverless compute service that enables running custom code blocks (such as JavaScript) on demand in response to events without configuring servers.
Step-by-Step Solution
Key Concept
Azure Serverless Compute (Functions and Logic Apps)