You are building an agent that classifies incoming emails into one of three categories: Urgent, Normal, or Spam. You want to improve accuracy by using few-shot examples in a structured format. Which approach best supports this goal?
Correct Answer: C
Comprehensive and Detailed Explanation (from UiPath Agentic Automation documentation): The correct approach isC, as it best reflects thefew-shot prompting pattern, which is a well-documented and recommended technique in both UiPath Autopilot™ and broader agentic AI design for improvingintent classificationaccuracy. InUiPath Agentic Automation, especially inPrompt Engineering, few-shot examples serve to "ground" the Large Language Model (LLM) with task-specific context. Providingstructured input-output pairs(as shown in option C) allows the model to learn from the context and mirror the expected output more reliably - enhancing classification precision. For instance, UiPath recommends using clearly formatted training examples in this structure: Input: "[Text]" Output: "[Label]" This aligns with UiPath's guidance under thePrompt Engineering Framework, which highlights that using few-shot exemplars with clear task demonstrationsignificantly improves model performance over zero- shot or ambiguous input formats (as in options A or B). Option D also underperforms due to insufficient grounding. UiPath emphasizes the importance oflabel clarity,format consistency, andexplicit instruction- all of which are satisfied in Option C. This method also supportspromptgeneralizationfor new inputs by modeling how categorization should happen, not just what categories exist. This technique is crucial in real-world agentic workflows where LLMs handle noisy, unstructured data (like emails), and are expected to trigger appropriate downstream actions such as ticket creation, escalation, or filtering.
UiPath-AAAv1 Exam Question 17
What is the significance of the "as-is" process map in identifying agentic automation opportunities?
Correct Answer: A
The correct answer isA- the"as-is" process mapis a foundational tool in UiPath'sAgentic Blueprint Design framework. It visualizes thecurrent stateof how work is performed, enabling teams to: * Identifymanual, repetitive, or time-consuming tasks * Spotdelays, rework loops, or human bottlenecks * Discover areas whereagents can augment or replace tasks It acts as abaseline diagnostic, not an implementation-ready flow. This is a key step in workshops led byprocess owners or business SMEs, before designing the "to-be" process where agents are introduced. B is incorrect - the as-is map isnot final. C refers to the optimized state, not the current one. D confuses the mapping's role - it captures thepresent, not thegoals.
UiPath-AAAv1 Exam Question 18
When would it be most appropriate to use Web Search instead of Web Reader in an agent workflow?
Correct Answer: C
Cis correct - useWeb Searchin an agent workflow when you need the LLM toquery public internet sources(e.g., news, pricing, documentation), butdon't have a specific URL. UiPath Autopilot and Agentic Agents distinguish: * Web Search: For open-ended discovery from the web (e.g., "find latest refund policies from airlines") * Web Reader: For extracting or summarizing content from aspecific, known URLor internal portal Web Search is ideal for: * Aggregating public info * Real-time summaries * Context retrieval for grounding the prompt A and B involveinternal sources- use tools likeKnowledge RetrievalorAPI connectorsinstead. D calls fortargeted extraction, better suited toWeb Readerwith structured parsing.
UiPath-AAAv1 Exam Question 19
Which of the following is a benefit of UiPath-built agents?
Correct Answer: D
D is correct - a major advantage of UiPath-built agents is their low-code creation model, which allows business users and developers to quickly create, test, and deploy agents. Key points from UiPath's Agentic Automation platform: Agents are built in Studio Web, using a drag-and-drop UI and agent designer canvas. Low-code tools allow teams to design agent prompts, behavior logic, tool connections, and escalations without deep programming skills. Agents integrate with UiPath Orchestrator for full lifecycle management. UiPath's low-code stack is designed to: Lower the barrier to AI adoption Accelerate time-to-value Allow cross-functional teams to collaborate on intelligent automation Options A and B are incorrect - agents support both structured and unstructured workflows, and fully integrate with Orchestrator. C is false - low-code is a core value prop.
UiPath-AAAv1 Exam Question 20
A developer is implementing a few-shot structured prompt for an email classification task. The prompt includes examples of email subjects labeled with their respective classifications, such as "Spam" or "Work." What is the most important aspect to consider when selecting examples for the prompt?
Correct Answer: C
The correct answer isC- the most critical aspect of designing a few-shot prompt in UiPath'sLLM-driven agent frameworkis selecting examples that arediverse,representative, andrelevantto the actual data the agent will encounter in production. In afew-shot structured prompt, examples are used to demonstrate a pattern the model should follow. UiPath recommends: * Usingrealistic examplesfrom actual user inputs or support tickets * Coveringedge casesor variations in phrasing and tone * Matching thedesired output structureexactly (e.g., Input: ..., Output: ...) These patterns help the LLMinfer the task correctlyandmaintain consistency, especially when processing unstructured inputs like email subjects. Option A is incorrect - introducing incorrect labels degrades performance and adds confusion. B is wrong - the number of examples depends on thetask complexity and token budget. Sometimes 3-5 is ideal. D undermines task alignment - random examples reduce accuracy and coherence. UiPath'sPrompt Engineering best practicesprioritizegrounded, contextually rich inputs, particularly when automating classification tasks like spam detection, triage, or intent recognition. High-quality, task-aligned examples lead tomore reliable, human-like agents.