Salesforce-Hyperautomation-Specialist Exam Questions

Total 60 Questions

Last Updated Exam : 22-Oct-2024

Any Airlines wants to create a new marketing campaign that sends customers special offers every month based on their accrued loyalty points. There is an existing integration for customer data using MuleSoft's API-led three-tier strategy. Loyalty information exists in an external system that can be accessed via an HTTP endpoint provided by the system, but has no current integration. The external ID used will be email address. The desired output is a CSV file containing customers that includes only the top 10 percent of loyalty point holders.
What is the most efficient way to meet this requirement?


A. A. 1. Have the MuleSoft team develop a new integration that includes a System API to the Loyalty system and uses the existing Customer System API.
2. Create a Process API to output the final results.
3. Create an Experience API for the business consumers to initiate the integration.


B. B. 1. Create a MuleSoft Composer flow that utilizes the current Customer integration to select all customers.
2. Create an additional MuleSoft Composer flow that retrieves all the Loyalty information.
3. Create a MuleSoft Composer flow that combines the two previous results and outputs the top 10 percent to a CSV file.


C. 1. Have the MuleSoft team develop a new integration that includes a new System API to both the Customer and Loyally systems.
2. Create a Process API to output the final results.
3. Create an Experience API for the business consumers to initiate the integration.


D. 1. Create a Salesforce Flow that retrieves the Contact data.
2. Create a Salesforce Flow that retrieves the Loyalty data.
3. Create a Flow Orchestration that uses the two flows and outputs the result to a CSV file.





A.
  A. 1. Have the MuleSoft team develop a new integration that includes a System API to the Loyalty system and uses the existing Customer System API.
2. Create a Process API to output the final results.
3. Create an Experience API for the business consumers to initiate the integration.

Explanation: Develop System API for Loyalty System: The first step is to develop a new System API that integrates with the Loyalty system. This API will handle communication with the external system via the provided HTTP endpoint.
Reference: MuleSoft API-led Connectivity

Utilize Existing Customer System API: Use the existing System API for customer data to retrieve necessary customer information. Combining these APIs ensures a modular approach and reuse of existing assets.
Reference: API-led Connectivity

Create Process API: Develop a Process API that combines data from both the Customer and Loyalty System APIs. This API will process the data, apply business logic to filter the top 10 percent of loyalty point holders, and format the results. Reference: Designing Process APIs

Create Experience API: Develop an Experience API to serve the business consumers. This API will provide a user-friendly interface for initiating the integration and retrieving the results as a CSV file.
Reference: API Experience Layer

Northern Trail Outfitters wants to create an automation which runs on a fixed schedule to enter sales data into NetSuite running as a process in the background. The business product owner chose MuleSoft Composer as the tool for this task.
The Salesforce admin wants to advise the product owner about how the MuleSoft Composer scheduling functionality works.
Which two options are available for use as the time mechanism within MuleSoft Composer?
(Choose two.)


A. Schedule based on a formula


B. Every 30 minutes


C. Every 30 days


D. Every 5 minutes





B.
  Every 30 minutes

D.
  Every 5 minutes

Explanation: MuleSoft Composer provides scheduling functionality that allows you to set up automated flows to run at specified intervals. The available options for scheduling within MuleSoft Composer include:
Every 30 minutes:
Every 5 minutes:
These scheduling options ensure that you can automate tasks at the desired frequency without manual intervention.
References:
MuleSoft Composer Documentation

AnyAirlines releases a new REST API that exposes access to an RPA process. The RPA process can only handle a limited number of interactions per second before the API begins returning errors. Which policy should AnyAirlines apply to prevent the API from being overloaded?


A. JSON threat protection


B. Rate Limiting - SLA


C. Spike Control


D. Client ID Enforcement





C.
  Spike Control

Explanation: To prevent an API from being overloaded, the Spike Control policy is suitable. It helps manage sudden bursts of traffic by limiting the rate at which requests are processed. Here’s how it works:
Preventing Overloads:
Configuration:
Implementation:
References: Anypoint Platform Spike Control Documentation

Which API policy can be applied to limit the number of requests an individual client can make to an API?


A. Client ID Enforcement


B. Spike Control


C. Rate limiting - SLA-Based


D. OAuth 2.0 access token enforcement





C.
  Rate limiting - SLA-Based

Explanation: The Rate Limiting - SLA-Based policy in Anypoint Platform is designed to control the number of requests an individual client can make to an API. This policy is highly configurable and allows you to set specific limits based on service level agreements (SLAs).
Rate Limiting - SLA-Based:
References:
Anypoint Platform Rate Limiting Documentation

A Salesforce flow needs to connect to external APIs provided by Northern Trail Outfitters (NTO) and AnyAirlines to retrieve data.
Which three steps should be taken to connect to the external APIs? (Choose three.)


A. Use an Action element to call and consume the appropriate API in the Salesforce flow.


B. Create External Services in Salesforce for NTO and AnyAirlines.


C. Create Named Credentials in Anypoint for NTO and AnyAirlines.


D. Use a Virtual service to call and consume the appropriate API in the Salesforce flow.


E. Create Named Credentials in Salesforce for NTO and AnyAirlines.





A.
  Use an Action element to call and consume the appropriate API in the Salesforce flow.

B.
  Create External Services in Salesforce for NTO and AnyAirlines.

E.
  Create Named Credentials in Salesforce for NTO and AnyAirlines.

Explanation: To connect a Salesforce flow to external APIs,
follow these steps:
Create Named Credentials in Salesforce:
Create External Services in Salesforce:
Use an Action Element in Salesforce Flow:
References: Salesforce External Services Documentation
Salesforce Named Credentials Documentation

Northern Trail Outfitters (NTO) uses Flow Orchestration to automate quote development. The "Review Quote" work item is performed by their team of technical writers but can be fulfilled by any technical writer on the team.
How can NTO ensure the "Review Quote" work item is assigned to the correct Salesforce user?


A. Use backend steps to automate work item assignment to the next available technical writer.


B. Create a Group for the team of Salesforce Users and assign the work item to the group.


C. Use MuleSoft RPAto review the document and submit it for approval if no issues are found.


D. Create a user collection variable and assign the work item to the user collection.





B.
  Create a Group for the team of Salesforce Users and assign the work item to the group.

Explanation: To ensure the "Review Quote" work item is assigned to the correct Salesforce user within the team of technical writers, the following approach can be used:
Creating a Group:
Assigning the Work Item to the Group:
Ensuring Flexibility and Availability:
References:
Salesforce Flow Orchestration Documentation

Northern Trail Outfitters set up a MuleSoft Composer integration between Salesforce and NetSuite that updates the Order object in Salesforce with data from NetSuite. When an order in Salesforce is updated as complete, the Last Order Date custom field on the related account should automatically update with the date the order was marked complete.
What is the best practice to achieve this outcome?


A. Update the MuleSoft Composer integration to also update the related account when the order is marked complete.


B. Replace the MuleSoft Composer integration with a three-tier API integration between Salesforce and NetSuite using Anvpoint Platform.


C. Create a record-triggered flow on the Order object that updates the related account when the order is marked complete.


D. Create a MuleSoft RPA bot that updates the related account when the order is marked complete.





C.
  Create a record-triggered flow on the Order object that updates the related account when the order is marked complete.

Explanation: To update the Last Order Date custom field on the related account when an order is marked complete in Salesforce, the best practice is to use a record-triggered flow:
Create a Record-Triggered Flow:
Update the Related Account:
This approach ensures that the data remains within Salesforce and is updated immediately as part of the same transaction, providing a robust and efficient solution.
References:
Salesforce Flow Builder Documentation

AnyAirlines has a MuleSoft Composer flow between NetSuite and Salesforce. One of the data elements coming from NetSuite is a string that needs to be put into a Boolean field in a Salesforce object.
Which Composer function should be used to change the datatype of the value?


A. today()


B. fromBooleanToString()


C. fromStringToBoolean()


D. substitute()





C.
  fromStringToBoolean()

Explanation: To convert a string from NetSuite into a Boolean field in a Salesforce object within MuleSoft Composer, you should use thefromStringToBoolean()function:
Function Purpose:
Usage:
Example:
References:
MuleSoft Composer Functions Documentation

Northern Trail Outfitters has deployed a MuleSoft RPA process to automate the extraction of sales data from CSV files. To integrate this RPA process with Sales Cloud, an action step is created that calls this RPA process in a MuleSoft Composer flow.
Which next step must be added to the flow to make use of the RPA process results?


A. Create Record action in Sales Cloud


B. If/Else block


C. Create or Update Record action in Sales Cloud


D. For Each loop





C.
  Create or Update Record action in Sales Cloud

Explanation: To integrate an RPA process that extracts sales data from CSV files with Sales Cloud using MuleSoft Composer, you need to take the following steps:
Invoke RPA Process:
Next Step - Create or Update Record:
This approach ensures that the results from the RPA process are correctly reflected in Sales Cloud.
References:
MuleSoft Composer Documentation
Salesforce Sales Cloud Documentation

AnyAirlines needs to select a tool for developing an integration between Salesforce and an ERP system in the cloud. The requirements state that the systems must communicate bidirectionally and as close to real time as possible. The ERP system can be accessed via a SOAP-based web service.
Which tool meets the requirements of this integration?


A. Anypoint Studio


B. MuleSoft Composer


C. Orchestrator


D. MuleSoft RPA





A.
  Anypoint Studio

Explanation: Anypoint Studio is the most suitable tool for developing an integration between Salesforce and an ERP system in the cloud, especially when bidirectional communication in near real-time is required. Here’s why:
SOAP-Based Web Services Support:
Bidirectional Communication:
Real-Time Integration:
Advanced Integration Capabilities:
References:
Anypoint Studio Documentation


Page 1 out of 6 Pages