option
Cuestiones
ayuda
daypo
buscar.php

SLF 4 - 4

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
SLF 4 - 4

Descripción:
SLF 4 - 4

Fecha de Creación: 2026/07/12

Categoría: Otros

Número Preguntas: 16

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

Sunrays Limited (SL) has developed an agent for loan origination workflows that must handle both non-determinism and strict regulatory compliance requirements. The agent needs to ensure that identity verification and credit check steps execute in a precise sequence without deviation. Which statement correctly differentiates these two instruction patterns in Agent Script's hybrid reasoning approach?. Declarative instructions require Flow execution for business logic, while procedural instructions are native to Agent Script but cannot access external systems or APIs. Declarative instructions provide conversational flexibility through large language model (LLM) interpretation, while procedural instructions use the '->' prefix to enforce guaranteed execution order with run, if, and transitions. Declarative instructions only work in Canvas View for visual editing, while procedural instructions require Script View and cannot be represented in the visual interface.

Sunrays Limited (SL) is testing an agent with a "Reset Password" action restricted by the guard available when @variables.isVerified == True. During a single conversation turn, the large language model (LLM) successfully sets the isVerified flag to true using @utils.setVariables, but fails to invoke the "Reset Password" action immediately afterward. What must the Agentforce Specialist consider regarding how the reasoning engine evaluates action availability?. The action is available from the start; the reasoning engine's intent to solve the user's issue automatically overrides the available when guard. The action becomes available immediately; available when conditions dynamically re-evaluate after every variable change within a single turn. The action remains unavailable for that turn; available when conditions control action visibility to the LLM and evaluate before the reasoning cycle begins, so the action won't be callable until the next turn.

At Horizon Insurance, the customer service team is reporting that the agent consistently routes claims intake conversations to the Policy Inquiry subagent (formerly known as a topic), even though user intent clearly indicates a claims-related issue. This misrouting persists despite the user clearly expressing the intent to discuss a claim. The Agentforce Specialist added guard conditions but the problem persists. What is most likely causing this incorrect routing in Horizon Insurance's agent?. Procedural instructions requiring Salesforce Flows to route to the correct subagent. Use of global instructions, to define subagent routing for agents in compliance-regulated environments. Overlap in subagent descriptions and entry conditions between 'Claims Intake' and 'Policy Inquiry' subagents.

Sunrays Limited (SL) is developing a help agent that must answer customer questions by grounding prompts in data from both internal knowledge articles and an external partner portal. The Agentforce Specialist configures the agent to use a Data 360 search index. During testing in the Agentforce Builder, the agent occasionally provides conflicting answers, and the specialist needs to differentiate between these two grounding sources to troubleshoot the responses. Which Data 360 process should the specialist review to ensure the origin of the information is accurately identified and made available?. The data harmonization process, where raw data is mapped to data model objects (DMOs) and source metadata is standardized to be queried specifically by hybrid retrieves. The Retrieval-Augmented Generation (RAG) synthesis phase, where the large language model (LLM) automatically uses a semantic retrieve to append the source system tag to the final generated output. The Data 360 retriever function process, where retrieved content can be filtered based on source metadata (such as document type or author) to refine results before they are ranked using semantic or hybrid search.

An insurance company needs a Service Agent to ground its responses based on company-specific PDFs and a comprehensive knowledge base. Which type of retriever should the Agentforce Specialist use to meet this requirement?. Dynamic retriever. Individual retriever. Ensemble retriever.

Sunrays Limited (SL) is testing an agent connected to an Agentforce Data Library. The agent successfully retrieves the correct data from the library, but delivers the response to the user as raw JSON structures instead of grammatically correct conversational language. Which quality evaluation scores poorly in this scenario?. Coherence. Conciseness. Completeness.

Before deploying a Retrieval Augmented Generation (RAG) solution into production, an Agentforce Specialist wants to evaluate whether their individual custom retrievers are surfacing the most relevant chunks for specific queries without writing any code. Which tool should the specialist use to test the retriever?. The Retriever Playground. Agentforce Testing Center. Data 360 Query Editor.

Sunrays Limited (SL) uses Agentforce to manage its customer service operations. However, the company uses a completely separate, third-party AI agent system to manage its warehouse logistics. SL wants the Agentforce customer service agent to be able to seamlessly request shipping reroutes and collaborate autonomously with the warehouse agent. Which open standard protocol is specifically designed to facilitate this exact type of cross-platform collaboration?. Model Context Protocol (MCP). Advanced Data Retrieval (ADR) standard. Agent-to-Agent (A2A) protocol.

Sunrays Limited (SL) is building an Agentforce Service Agent to handle password resets. The agent must first verify the customer's identity using an email verification code, then once identity is confirmed the agent must execute the organization's existing password reset Flow. The identity verification subagent is already configured. Which implementation approach should the Agentforce Specialist recommend?. Create an agent action referencing the password reset Flow, assign it to the identity verification subagent, and call it deterministically from the subagent's reasoning block using Agent Script conditional logic. Create a separate subagent named Password Reset, configure it with an action that invokes the Flow, and pass the identity verification variable as context so the subagent's instructions can reference the verified status before proceeding. Add an instruction to the identity verification subagent directing the agent to trigger the password reset Flow once identity is confirmed, and store the customer's reset intent in a conversation variable so the reasoning engine can reference it when deciding whether to proceed.

Sunrays Limited (SL) is implementing a system to manage partner order support and inventory inquiries. The company needs to ensure that large documents are processed effectively to improve retrieval accuracy when agents respond to partner queries. Understanding how documents are broken down and indexed is crucial for this implementation. What is a key characteristic of the chunking process?. Chunking breaks large documents into smaller units called passages. The chunking process returns entire documents to the large language model (LLM) for processing. Chunking strategies are interchangeable and do not affect the retrieval process.

An Agentforce Specialist at Sunrays Limited (SL) observes that the agent frequently directs customers with clear billing inquiries to the general troubleshooting subagent (formerly known as a topic). This misrouting is causing a spike in average handle time and missing service-level agreement (SLA) targets. The contact center manager requires a solution that is quick to implement but preserves the agent's ability to handle complex, non-linear conversations. What is the most appropriate approach to resolve this?. Update the agent's global 'System Instructions' to include a list of forbidden keywords for each subagent. Audit subagent instructions for semantic competition and implement deterministic filters to guide the planner's selection. Create a 'Router' sub-flow that uses a Decision element to manually assign every incoming request to a specific subagent.

Sunrays Limited (SL) is building an Agentforce Service Agent to help customers track their purchases. To store the customer's order number during the conversation, the Agentforce Specialist creates and initializes a variable in Agent Script using the declaration order_id: string = "", omitting the mutable keyword. During testing, the agent attempts to update this variable with the user's order number via the @utils.setVariables utility. What is the result of this variable declaration at runtime?. The variable defaults to mutable; the mutable keyword is optional and has no effect, allowing the agent to successfully update the variable. The declaration is a syntax error and the agent will fail to deploy. The variable is treated as read-only; it cannot be updated by actions or @utils.setVariables at runtime because it lacks the mutable keyword.

Sunrays Limited (SL) has deployed a Service Agent to production that handles billing, returns, and technical support across 12 subagent (formerly known as a topic). Following a business process change, the Agentforce Specialist updates the Billing subagent instructions to include a new refund escalation path. Within days, the customer experience team reports that billing interactions are intermittently routing to the General FAQ subagent instead. Which approach is most effective in helping to diagnose the cause and confirm the full extent of the impact?. Enable Utterance Analysis in the production org to review conversation logs for misrouted interactions, then iteratively adjust the Billing subagent instructions in Agent Builder until the misrouting rate falls below an acceptable threshold. Replicate each suspected failure scenario manually in Agentforce Builder's Conversation Preview, document the subagent selection results, and update the Billing subagent instructions before redeploying the agent. Re-run the stored test suite in Agentforce Testing Center against the modified agent, review Subagent Pass % and Action Pass % metrics to isolate regressions, then extend the suite to cover the refund escalation path.

What is a valid option for Omni-Channel routing for a messaging channel?. Agentforce Service Agent. Autolaunched flow. Agentforce Employee Agent.

In a knowledge-based data library, which capability does enabling the "Filter by Knowledge Data Categories" option provide?. It applies custom metadata from the selected data categories to the knowledge articles, aiming to enhance search relevance. It organizes the indexed knowledge articles into separate sections based on their assigned data categories. It limits the indexed articles to only those belonging to selected data categories, thereby improving indexing precision.

Which element should an Agentforce Specialist use in an Omni-Flow to route conversations to an agent?. Route Conversation. Route Work. Route to Agent.

Denunciar Test