ExamGecko
Home Home / Salesforce / Certified Design and Build Integration Solutions (ARC-101)

Salesforce Certified Design and Build Integration Solutions (ARC-101) Practice Test - Questions Answers, Page 3

Question list
Search
Search

List of questions

Search

Related questions











Universal Containers (UC) is currently managing a custom monolithic web service that runs on an onpremise server.

This monolithic web service is responsible for Point-to-Point (P2P) integrations between:

A.
Salesforce and a legacy billing application
A.
Salesforce and a legacy billing application
Answers
B.
Salesforce and a cloud-based Enterprise Resource Planning application 3. Salesforce and a data lake.UC has found that the tight interdependencies between systems is causing integrations to fail.What should an architect recommend to decouple the systems and improve performance of the integrations?
B.
Salesforce and a cloud-based Enterprise Resource Planning application 3. Salesforce and a data lake.UC has found that the tight interdependencies between systems is causing integrations to fail.What should an architect recommend to decouple the systems and improve performance of the integrations?
Answers
C.
Re-write and optimize the current web service to be more efficient.
C.
Re-write and optimize the current web service to be more efficient.
Answers
D.
Leverage modular design by breaking up the web service into smaller pieces for a microservice architecture.
D.
Leverage modular design by breaking up the web service into smaller pieces for a microservice architecture.
Answers
E.
Use the Salesforce Bulk API when integrating back into Salesforce.
E.
Use the Salesforce Bulk API when integrating back into Salesforce.
Answers
F.
Move the custom monolithic web service from on-premise to a cloud provider.
F.
Move the custom monolithic web service from on-premise to a cloud provider.
Answers
Suggested answer: B

An Integration Architect has built a solution using REST API, updating Account, Contact, and other related information. The data volumes have increased, resulting in higher API calls consumed, and some days the limits are exceeded. A decision was made to decrease the number of API calls using bulk updates. The customer prefers to continue using REST API to avoid architecture changes.

Which REST API composite resources should the Integration Architect use to allow up to 200 records in one API call?

A.
SObject Collections
A.
SObject Collections
Answers
B.
SObject Tree
B.
SObject Tree
Answers
C.
Batch
C.
Batch
Answers
D.
Composite
D.
Composite
Answers
Suggested answer: B

Explanation:

https://developer.salesforce.com/docs/atlas.enus.api_rest.meta/api_rest/resources_composite_sobject_tree.htm

A company's security assessment noted vulnerabilities on the un managed packages in their Salesforce orgs, notably secrets that are easily accessible and in plain text, such as usernames, passwords, and OAuth tokens used in callouts from Salesforce.

Which two persistence mechanisms should an integration architect require to be used to ensure that secrets are protected from deliberate or inadvertent exposure?

Choose 2 answers

A.
Encrypted Custom Fields
A.
Encrypted Custom Fields
Answers
B.
Named Credentials
B.
Named Credentials
Answers
C.
Protected Custom Metadata Types
C.
Protected Custom Metadata Types
Answers
D.
Protected Custom Settings
D.
Protected Custom Settings
Answers
Suggested answer: A, B

Northern Trail Outfitters (NTO) leverages Sales Cloud for tracking and managing leads, accounts, contacts, and opportunities- Orders and order fulfillment is taken care of by an Order Management System (OMS) in the back-office. When an opportunity has changed it's status to "Closed/Won" and there are products attached, the details should be passed to the OMS for fulfillment operations.

The callout from Salesforce to the OMS should be synchronous.

What should an Integration Architect do to satisfy these requirements?

A.
Write a trigger that invokes an Apex proxy class to make a REST callout to the Order Management System.
A.
Write a trigger that invokes an Apex proxy class to make a REST callout to the Order Management System.
Answers
B.
Use Process Builder to call an Apex proxy class to make a REST callout to the Order Management System.
B.
Use Process Builder to call an Apex proxy class to make a REST callout to the Order Management System.
Answers
C.
Develop a batch Apex job that aggregates Closed Opportunities and makes a REST callout to the Order Management System hourly.
C.
Develop a batch Apex job that aggregates Closed Opportunities and makes a REST callout to the Order Management System hourly.
Answers
D.
Build a Lightning Component that makes a synchronous Apex REST callout to the Order Management System when a button is clicked.
D.
Build a Lightning Component that makes a synchronous Apex REST callout to the Order Management System when a button is clicked.
Answers
Suggested answer: B

A company in a heavily regulated industry requires data in legacy systems to be displayed in Salesforce user interfaces (UIs). They are proficient in their cloud-based ETL (extract, transform, load) tools. They expose APIs built on their on-premise middleware to cloud and on-premise applications.

Which two findings about their current state will allow copies of legacy data in Salesforce?

Choose 2 answers

A.
Only on-premise systems are allowed access to legacy systems.
A.
Only on-premise systems are allowed access to legacy systems.
Answers
B.
Cloud-based ETL can access Salesforce and supports queues.
B.
Cloud-based ETL can access Salesforce and supports queues.
Answers
C.
On-premise middleware provides APIs to legacy systems data.
C.
On-premise middleware provides APIs to legacy systems data.
Answers
D.
Legacy systems can use queues for on-premise integration.
D.
Legacy systems can use queues for on-premise integration.
Answers
Suggested answer: B, C

An enterprise architect has requested the Salesforce Integration architect to review the following (see diagram & description) and provide recommendations after carefully considering all constraints of the enterprise systems and Salesforce platform limits.

• About 3,000 phone sales agents use a Salesforce Lightning UI concurrently to check eligibility of a customer for a qualifying offer.

• There are multiple eligibility systems that provides this service and are hosted externally.

However, their current response times could take up to 90 seconds to process and return (there are discussions to reduce the response times in future, but no commitments are made).

• These eligibility systems can be accessed through APIs orchestrated via ESB (MuleSoft).

• All requests from Salesforce will have to traverse through customer's API Gateway layer and the API Gateway imposes a constraint of timing out requests after 9 seconds.

Which three recommendations should be made?

Choose 3 answers

A.
ESB (Mule) with cache/state management to return a requestID (or) response if available from external system.
A.
ESB (Mule) with cache/state management to return a requestID (or) response if available from external system.
Answers
B.
Recommend synchronous Apex call-outs from Lightning UI to External Systems via Mule and implement polling on API gateway timeout.
B.
Recommend synchronous Apex call-outs from Lightning UI to External Systems via Mule and implement polling on API gateway timeout.
Answers
C.
Use Continuation callouts to make the eligibility check request from Salesforce from Lightning UI at page load.
C.
Use Continuation callouts to make the eligibility check request from Salesforce from Lightning UI at page load.
Answers
D.
When responses are received by Mule, create a Platform Event in Salesforce via Remote-Call-In and use the empAPI in the lightning UI to serve 3,000 concurrent users.
D.
When responses are received by Mule, create a Platform Event in Salesforce via Remote-Call-In and use the empAPI in the lightning UI to serve 3,000 concurrent users.
Answers
E.
Implement a 'Check Update' button that passes a requestID received from ESB (user action needed).
E.
Implement a 'Check Update' button that passes a requestID received from ESB (user action needed).
Answers
Suggested answer: A, C, E

Northern Trail Outfitters has a requirement to encrypt few of widely used standard fields. They also want to be able to use these fields in workflow rules.

Which security solution should an Integration Architect recommend to fulfill the business use case?

A.
Cryptography Class
A.
Cryptography Class
Answers
B.
Data Masking
B.
Data Masking
Answers
C.
Classic Encryption
C.
Classic Encryption
Answers
D.
Platform Shield Encryption
D.
Platform Shield Encryption
Answers
Suggested answer: D

Explanation:

https://help.salesforce.com/articleView?id=data_mask_overview.htm&type=5

https://help.salesforce.com/articleView?id=security_pe_vs_classic_encryption.htm&type=5

Northern Trail Outfitters uses a custom Java application to display code coverage and test results for all of their enterprise applications and is planning to include Salesforce as well.

Which Salesforce API should an Integration Architect use to meet the requirement?

A.
SOAP API
A.
SOAP API
Answers
B.
Analytics REST API
B.
Analytics REST API
Answers
C.
Metadata API
C.
Metadata API
Answers
D.
Tooling API
D.
Tooling API
Answers
Suggested answer: D

Explanation:

https://developer.salesforce.com/docs/atlas.enus.api_tooling.meta/api_tooling/tooling_api_objects_apexcodecoverage.htm

A large enterprise customer has decided to implement Salesforce as their CRM. The current system landscape includes the following:

A.
An Enterprise Resource Planning (ERP) solution that is responsible for Customer Invoicing and Order fulfillment.
A.
An Enterprise Resource Planning (ERP) solution that is responsible for Customer Invoicing and Order fulfillment.
Answers
B.
A Marketing solution they use for email campaigns.The enterprise customer needs their sales and service associates to use Salesforce to view and log their interactions with customers and prospects in Salesforce.Which system should be the System of record for their customers and prospects?
B.
A Marketing solution they use for email campaigns.The enterprise customer needs their sales and service associates to use Salesforce to view and log their interactions with customers and prospects in Salesforce.Which system should be the System of record for their customers and prospects?
Answers
C.
ERP with all prospect data from Marketing and Salesforce.
C.
ERP with all prospect data from Marketing and Salesforce.
Answers
D.
Marketing with all customer data from Salesforce and ERP.
D.
Marketing with all customer data from Salesforce and ERP.
Answers
E.
Salesforce with relevant Marketing and ERP information.
E.
Salesforce with relevant Marketing and ERP information.
Answers
F.
New Custom Database for Customers and Prospects.
F.
New Custom Database for Customers and Prospects.
Answers
Suggested answer: C

Explanation:

https://www.workfront.com/blog/systems-of-record

Northern Trail Outfitters is seeking to improve the performance and security of outbound integrations from Salesforce to on-premise servers.

What should the Architect consider before recommending a solution?

A.
External gateway products in use
A.
External gateway products in use
Answers
B.
A Default gateway restrictions
B.
A Default gateway restrictions
Answers
C.
Considerations for using Deterministic Encryption
C.
Considerations for using Deterministic Encryption
Answers
D.
Shield Platform Encryption Limitations
D.
Shield Platform Encryption Limitations
Answers
Suggested answer: A
Total 106 questions
Go to page: of 11