✅ Part 3 · All 1 Topic
Part 3 Full Quiz
10 scenario-based questions on agentic AI. Select an answer to reveal the explanation.
Question
1 / 10
Score
0 / 10
Progress
Part 3 — Implement an Agentic Solution
1 / 10
Scenario: A logistics company wants to build an AI system that: checks real-time inventory levels, queries shipping carrier APIs for rates, calculates the optimal shipping method, books the shipment automatically, and then emails the confirmation — all without human intervention between steps.
Which approach is most appropriate?
💡 Explanation
B is correct. This is a multi-step autonomous task requiring dynamic tool calls based on real-time data — the definition of an agentic scenario. The Azure AI Agent Service lets you register custom function tools (inventory check, carrier API, booking, email) and the agent autonomously decides when and how to call each one, handles results, and loops until complete. A single Chat Completions call cannot call external APIs. Standard Prompt Flow is a fixed linear sequence that cannot adapt dynamically. Logic Apps is a no-code workflow tool without AI reasoning capabilities.