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 7

Question list
Search
Search

List of questions

Search

Related questions











Given the diagram below, a Salesforce org, middleware, and Historical data store (with 20million records and growing) exists with connectivity between them Historical records are archived from Salesforce and moved to Historical Data store (which houses 20M records and growing; fine-tuned to be performant with search queries).

Call center agents use Salesforce, when reviewing occasional special cases, have requested access to view the related historical case items that relate to submit cases.

Which mechanism and patterns are recommended to maximize declarative configuration?

A.
Use ESB tool with Data Virtualization pattern, expose OData endpoint, and then use Salesforce Connect to consume and display the External Object alongside with the Caseobject.
A.
Use ESB tool with Data Virtualization pattern, expose OData endpoint, and then use Salesforce Connect to consume and display the External Object alongside with the Caseobject.
Answers
B.
C Use an ESB tool with a fire and forget pattern and then publish a platform event for the requested historical data.
B.
C Use an ESB tool with a fire and forget pattern and then publish a platform event for the requested historical data.
Answers
C.
Use an ESB tool with Request-Reply pattern and then make a real-time Apex callout to the ESB endpoint to fetch and display component related to Case object
C.
Use an ESB tool with Request-Reply pattern and then make a real-time Apex callout to the ESB endpoint to fetch and display component related to Case object
Answers
D.
Use an ETL tool with a Batch Data Synchronization pattern to migrate historical data into Salesforce and into a custom object (historical data) related to Case object.
D.
Use an ETL tool with a Batch Data Synchronization pattern to migrate historical data into Salesforce and into a custom object (historical data) related to Case object.
Answers
Suggested answer: A

Northern Trail Outfitters needs to secure an integration with an external Microsoft Azure API Gateway.

What integration security mechanism should be employed?

A.
Configure mutual server authentication with two-way SSL using CA issued certificates.
A.
Configure mutual server authentication with two-way SSL using CA issued certificates.
Answers
B.
Configure a connected app with an authorization endpoint of the API gateway and configure OAuth settings.
B.
Configure a connected app with an authorization endpoint of the API gateway and configure OAuth settings.
Answers
C.
Use an API only user profile and implement use an external identity provider with federated API access.
C.
Use an API only user profile and implement use an external identity provider with federated API access.
Answers
D.
Implement Salesforce Shield with Encryption at Rest and generate a tenant secret.
D.
Implement Salesforce Shield with Encryption at Rest and generate a tenant secret.
Answers
Suggested answer: A

Northern Trail Outfitters has recently experienced intermittent network outages in its call center. When network service resumes, Sales representatives have inadvertently created duplicate orders in the manufacturing system because the order was placed but the return acknowledgement was lost during the outage.

Which solution should an architect recommend to avoid duplicate order booking?

A.
Use Outbound Messaging to ensure manufacturing acknowledges receipt of order.
A.
Use Outbound Messaging to ensure manufacturing acknowledges receipt of order.
Answers
B.
Use scheduled apex to query manufacturing system for potential duplicate or missing orders.
B.
Use scheduled apex to query manufacturing system for potential duplicate or missing orders.
Answers
C.
Implement idempotent design and have Sales Representatives retry order(s) in question.
C.
Implement idempotent design and have Sales Representatives retry order(s) in question.
Answers
D.
Have scheduled Apex resubmit orders that do not have a successful response.
D.
Have scheduled Apex resubmit orders that do not have a successful response.
Answers
Suggested answer: A

Northern Trail Outfitters wants to improve the quality of call-outs from Salesforce to their REST APIs. For this purpose, they will require all API clients/consumers to adhere to RESTAPI Markup Language (RAML) specifications that include field-level definition of every API request and response payload. RAML specs serve as interface contracts that Apex REST API Clients can rely on.

Which two design specifications should the Integration Architect include in the integration architecture to ensure that Apex REST API Clients unit tests confirm adherence to the RAML specs?

Choose 2 answers

A.
Call the Apex REST API Clients in a test context to get the mock response.
A.
Call the Apex REST API Clients in a test context to get the mock response.
Answers
B.
Require the Apex REST API Clients to implement the HttpCalloutMock.
B.
Require the Apex REST API Clients to implement the HttpCalloutMock.
Answers
C.
Call the HttpCalloutMock implementation from the Apex REST API
C.
Call the HttpCalloutMock implementation from the Apex REST API
Answers
D.
Clients. D Implement HttpCalloutMock to return responses per RAMLspecification.
D.
Clients. D Implement HttpCalloutMock to return responses per RAMLspecification.
Answers
Suggested answer: A, D

Which two system constraint questions should be considered when designing an integration to send orders from Salesforce to a fulfillment system?

Choose 2 answers

A.
What latency is acceptable for orders to reach the fulfillment system?
A.
What latency is acceptable for orders to reach the fulfillment system?
Answers
B.
Which system will validate order shipping addresses?
B.
Which system will validate order shipping addresses?
Answers
C.
Can the fulfillment system implement a contract-first Outbound Messaging interface?
C.
Can the fulfillment system implement a contract-first Outbound Messaging interface?
Answers
D.
Can the fulfillment system participate in idempotent design to avoid duplicate orders?
D.
Can the fulfillment system participate in idempotent design to avoid duplicate orders?
Answers
Suggested answer: C, D

A customer's enterprise architect has identified requirements around caching, queuing, error handling, alerts, retries, event handling, etc. The company has asked the Salesforce integration architect to help fulfill such aspects with their Salesforce program.

Which three recommendations should the Salesforce integration architect make?

Choose 3 answers

A.
Transform a fire-and-forget mechanism to request-reply should be handled bymiddleware tools (like ETL/ESB) to improve performance.
A.
Transform a fire-and-forget mechanism to request-reply should be handled bymiddleware tools (like ETL/ESB) to improve performance.
Answers
B.
Provide true message queueing for integration scenarios (including orchestration,process choreography, quality of service, etc.) given that a middleware solution is required.
B.
Provide true message queueing for integration scenarios (including orchestration,process choreography, quality of service, etc.) given that a middleware solution is required.
Answers
C.
Message transformation and protocol translation should be done within Salesforce.Recommend leveraging Salesforce native protocol conversion capabilities as middle watools are NOT suited for such tasks
C.
Message transformation and protocol translation should be done within Salesforce.Recommend leveraging Salesforce native protocol conversion capabilities as middle watools are NOT suited for such tasks
Answers
D.
Event handling processes such as writing to a log, sending an error or recovery process, or sending an extra message, can be assumed to be handled by middleware.
D.
Event handling processes such as writing to a log, sending an error or recovery process, or sending an extra message, can be assumed to be handled by middleware.
Answers
E.
Event handling in a publish/subscribe scenario, the middleware can be used to route requests or messages to active data-event subscribers from active data-event publishers.
E.
Event handling in a publish/subscribe scenario, the middleware can be used to route requests or messages to active data-event subscribers from active data-event publishers.
Answers
Suggested answer: B, D, E

Universal Containers is a global financial company that sells financial products and services.

There is a daily scheduled Batch Apex job that generates invoice from a given set of orders.

UC requested building a resilient integration for this batch apex job in case the invoice generation fails.

What should an integration architect recommend to fulfill the requirement?

A.
Build Batch Retry & Error Handling in the Batch Apex Job itself.
A.
Build Batch Retry & Error Handling in the Batch Apex Job itself.
Answers
B.
Batch Retry & Error Handling report to monitor the error handling.
B.
Batch Retry & Error Handling report to monitor the error handling.
Answers
C.
Build Batch Retry & Error Handling using BatchApexErrorEvent.
C.
Build Batch Retry & Error Handling using BatchApexErrorEvent.
Answers
D.
Build Batch Retry & Error Handling in the middleware.
D.
Build Batch Retry & Error Handling in the middleware.
Answers
Suggested answer: C
A.
At peak, their call center can receive up to 100,000 calls per day.
A.
At peak, their call center can receive up to 100,000 calls per day.
Answers
B.
The phone number type classification is a service provided by an external service API.
B.
The phone number type classification is a service provided by an external service API.
Answers
C.
Business is flexible with timing and frequency to check and update the records (throughout the night or every 6-12 hours is sufficient).A Remote-Call-In pattern and/or Batch Synchronization (Replication via ETL: System -> Salesforce) are determined to work with a middleware hosted on custom premise.In order to implement these patterns and mechanisms, which component should an integration architect recommend?
C.
Business is flexible with timing and frequency to check and update the records (throughout the night or every 6-12 hours is sufficient).A Remote-Call-In pattern and/or Batch Synchronization (Replication via ETL: System -> Salesforce) are determined to work with a middleware hosted on custom premise.In order to implement these patterns and mechanisms, which component should an integration architect recommend?
Answers
D.
ConnectedApp configured in Salesforce to authenticate the middleware.
D.
ConnectedApp configured in Salesforce to authenticate the middleware.
Answers
E.
IoConfigure Remote Site Settings in Salesforce to authenticate the middleware.
E.
IoConfigure Remote Site Settings in Salesforce to authenticate the middleware.
Answers
F.
An API Gateway that authenticates requests from Salesforce into the Middleware(ETL/ESB).
F.
An API Gateway that authenticates requests from Salesforce into the Middleware(ETL/ESB).
Answers
G.
Firewall and reverse proxy are required to protect internal APIs and resource being exposed.
G.
Firewall and reverse proxy are required to protect internal APIs and resource being exposed.
Answers
Suggested answer: A

Northern Trail Outfitters (NTO) use Salesforce to track leads, opportunities, and to capture order details. However, Salesforce isn't the system that holds or processes orders. After the order details are captured in Salesforce, an order must be created in the remote system, which manages the orders lifecylce. The Integration Architect for the project is recommending a remote system that will subscribe to the platform event defined in Salesforce.

Which integration pattern should be used for this business use case?

A.
Remote Call In
A.
Remote Call In
Answers
B.
Request and Reply
B.
Request and Reply
Answers
C.
Fire and Forget
C.
Fire and Forget
Answers
D.
Batch Data Synchronization
D.
Batch Data Synchronization
Answers
Suggested answer: C

Northern Trail Outfitters (NTO) uses a custom mobile app to interact with their customers.

One of the features of the app are Salesforce Chatter Feeds. NTO wants to automatically post a Chatter item to Twitter whenever the post includes the #thanksNTO hashtag.

Which API should an Integration Architect use to meet this requirement?

A.
Connect REST API
A.
Connect REST API
Answers
B.
REST API
B.
REST API
Answers
C.
Streaming API
C.
Streaming API
Answers
D.
Apex REST
D.
Apex REST
Answers
Suggested answer: A
Total 106 questions
Go to page: of 11