Summer Sale - Special Discounts Limited Time 55% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 63r59951

Integration-Architect Salesforce Certified Integration Architect (WI24) Questions and Answers

Questions 4

Northern Trail Outfitters has had an increase in requests from other business units to integrate opportunity information with other systems from Salesforce. The developers have started writing asynchronous @future callouts directly into the target systems. The CIO is concerned about the viability of this approach scaling for future growth and has requested a solution recommendation.

What should be done to mitigate the concerns that the CIO has?

Options:

A.

Implement an ETL tool and perform nightly batch data loads to reduce network traffic using last modified dates on the opportunity object to extract the right records.

B.

Develop a comprehensive catalog of Apex classes to eliminate the need for redundant code and use custom metadata to hold the endpoint information for each integration.

C.

Refactor the existing ©future methods to use Enhanced External Services, import Open API 2.0 schemas and update flows to use services instead of Apex.

D.

Implement an Enterprise Service Bus for service orchestration, mediation, routing and decouple dependencies across systems.

Buy Now
Questions 5

Northern Trail Outfitters (NTO) has an affiliate company that would like immediate notifications of changes to opportunities in the NTO Salesforce instance. The affiliate company has a CometD client available.

Which solution is recommended in order to meet the requirement?

Options:

A.

Create a connected app in the affiliate org and select the "Accept CometD API Requests".

B.

A Implement a polling mechanism in the client that calls the SOAP API get updated method to get the ID values of each updated record.

C.

Configure External Services to call the subscriber in Apex in the Onchange Trigger event as part of the flow.

D.

Create a PushTopic update event on the Opportunity Object to allow the subscriber to react to the streaming API.

Buy Now
Questions 6

Which three considerations should an Integration Architect consider when recommending Platform Event as a Integration solution?

Choose 3 answers

Options:

A.

Inability to query event messages using SOQL

B.

Subscribe to an AssetToken Event stream to monitor OAuth2.0 authentication activity. C

C.

Inability to create a Lightning record page for platform events.

D.

When you delete an event definition, it's permanently removed and can't be restored.

E.

You can use Event Monitoring to track user activity, such as logins and running reports.

Buy Now
Questions 7

Northern Trail Outfitters needs to present shipping costs and estimated delivery times to their customers. Shipping services used vary by region, and have similar but distinct service request parameters.

Which integration component capability should be used?

Options:

A.

Enterprise Service Bus to determine which shipping service to use, and transform requests to the necessary format.

B.

Outbound Messaging to request costs and delivery times from Shipper delivery services with automated error retry.

C.

APEX REST Service to implement routing logic to the various shipping service.

D.

Enterprise Service Bus user interface to collect shipper-specific form data.

Buy Now
Questions 8

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

Options:

A.

Transform a fire-and-forget mechanism to request-reply should be handled by middleware tools (like ETL/ESB) to improve performance.

B.

Provide true message queueing for integration scenarios (including orchestration, process choreography, quality of service, etc.) given that a middleware solution is required.

C.

Message transformation and protocol translation should be done within Salesforce.Recommend leveraging Salesforce native protocol conversion capabilities as middleware tools are NOT suited for such tasks

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.

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.

Buy Now
Questions 9

Northern Trail Outfitters (NTO) is looking to integrate three external systems that run nightly data enrichment processes in Salesforce. NTO has both of the following security and strict auditing requirements:

1. The external systems must follow the principle of least privilege, and

2. The activities of the eternal systems must be available for audit.

What should an Integration Architect recommend as a solution for these integrations?

Options:

A.

A shared integration user for the three external system integrations.

B.

A shared Connected App for the three external system integrations.

C.

A unique integration user for each external system integration.

D.

A Connected App for each external system integration.

Buy Now
Questions 10

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?

Options:

A.

Write a trigger that invokes 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 theOrder Management System.

C.

Develop a batch Apex job that aggregates Closed Opportunities and makes a REST callout to the Order Management System hourly.

D.

Build a Lightning Component that makes a synchronous Apex REST callout to the Order ManagementSystem when a button is clicked.

Buy Now
Questions 11

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 life cylce. 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?

Options:

A.

Remote Call In

B.

Request and Reply

C.

Fire and Forget

D.

Batch Data Synchronization

Buy Now
Questions 12

An Integration Developer is developing an HR synchronization app for a client. The app synchronizes Salesforce record data changes with an HR system that's external to Salesforce.

What should the integration architect recommend to ensure notifications are stored for up to three days if data replication fails?

Options:

A.

Change Data Capture

B.

Generic Events

C.

Platform Events

D.

Callouts

Buy Now
Questions 13

A conglomerate is designing a Lightning Web Component (LWC) to display transactions aggregated from different sources. Their current system landscape is as follows:

1. Transactions are created at any time through their various on-premise and cloud-based systems.

2. All necessary transactions are replicated to a custom Transaction object in Salesforce. It is updated periodically so it only has a subset of the necessary transactions between updates.

3. Middleware supports publish-subscribe interactions and provides RESTful Enterprise APIs that can retrieve transactions from on-premise and cloud-based systems.

The company wants to address a usability concern regarding incomplete data displayed on the LWC component. What should the Integration Architect specify so the LWC will be able to display all the required transactions?

Options:

A.

Use the Continuation class to call the Enterprise APIs and then process the response in a callback method.

B.

Let the Lightning Data Service with an ©wire adapter display new values when the custom object records change.

C.

Call the Enterprise APIs directly from the LWC's JavaScript code and redisplay the LWC on receipt of the API response.

D.

Publish a Platform Event, have the middleware subscribe and update the custom object on receipt of Platform Event.

Buy Now
Questions 14

A company's cloud-based single page application consolidates data local to the application with data from on premise and 3rd party systems. The diagram below typifies the application's combined use of synchronous and asynchronous calls.

The company wants to use the average response time of its application's user interface as a basis for certain alerts. For this purpose, the following occurs:

1. Log every call's start and finish date and time to a central analytics data store.

2. Compute response time uniformly as the difference between the start and finish date and time — A to H in the diagram.

Which computation represents the end-to-end response time from the user's perspective?

Options:

A.

Sum of A to H

B.

Sum of A to F

C.

Sum of A, G, and H

D.

Sum of A and H

Buy Now
Questions 15

An enterprise customer that has more than 10 million customers have the following systems and conditions in their landscape:

Options:

A.

Enterprise Billing System (EBS) - All customer's monthly billing is generated by this system.

B.

Enterprise Document Management System (DMS) Bills mailed to customers are maintained in the Document Management system.

C.

Salesforce CRM (CRM)- Customer information, Sales and Support information is maintained in CRM.

Buy Now
Questions 16

The sales Operations team at Northern Trail Outfitters imports new leads each day. An integrated legacy territory management system assigns territories to leads before Sales team members can work on them. The current integration often experiences latency issues.

Which two recommendations should an Architect make to improve the integration performance?

Choose 2 answers

Options:

A.

Reduce batch size of asynchronous BULK API.

B.

Reduce batch size of synchronous BULK API.

C.

Legacy system should submit in serial mode.

D.

Legacy system should submit in parallel mode.

Buy Now
Questions 17

An Architect is asked to build a solution that allows a service to access Salesforce through the API. What is the first thing the Architect should do?

Options:

A.

Create a new user with SystemAdministrator profile.

B.

Authenticate the integration using existing Single Sign-On.

C.

Authenticate the integration using existing Network-BasedSecurity.

D.

Create a special user solely for the integration purposes.

Buy Now
Questions 18

A company that is a leading provider of courses and training delivers courses using third

party trainers. The trainer for the company has to be verified from 10 different training

accreditation verification agencies before providing training for the company. Each training accreditation agency has its own response time, which could take days to confirm a trainer.

The company decided to automate the trainer accreditation verification process by integrating to the agencies’ web services.

What is the recommended approach to automate this process?

Options:

A.

Use salesforce external service to make the call out, Salesforce external service should check the verification agencies until the result is verified, then update the trainer status to "verified".

B.

Create a trigger on the trainer record to make a Callout to each verification agencies, write business logic to consolidate the verification then update the trainer status to verified".

C.

Make an apex callout using @future annotation to make the call out to all different agencies. The response should update the trainer status to "verified".

D.

Use middleware to handle the call out to the 10 different verification services, the middleware will handle the business logic of consolidating the verification result from t 10 services, then make a call-in to salesforce and update the verification status to "verified".

Buy Now
Questions 19

Service Agents at Northern Trail Outfitters uses Salesforce to manage cases and B2C Commerce for ordering.

Which integration solution should an architect recommend in order for the service agents to see order history from a B2C Commerce system?

Options:

A.

Salesforce B2C Commerce to Service Cloud Connector

B.

A REST API offered by Commerce Platform

C.

Mulesoft Anypoint Platform

D.

REST API offered by Salesforce Platform

Buy Now
Questions 20

A Salesforce customer is planning to roll out Salesforce for all their Sales and Service staff.

Senior Management has requested that monitoring is to be in pla for Operations to notify any

degradation in Salesforce performance.

How should an integration consultant implement monitoring?

Options:

A.

Use Salesforce limits API to capture current API usage and configure alerts for monitoring.

B.

Use APIEVENT to track all user-initiated API calls through SOAP, REST or BULK APIs.

C.

Identify critical business processes and establish automation to monitor performance against established benchmarks.

D.

Request Salesforce to monitor the Salesforce instance and notify when there is degradation in performance.

Buy Now
Questions 21

An architect recommended using Apex code to make callouts to an external system to

process insurance quote.

What should the integration architect consider to make sure this is the right option for the integration?

Options:

A.

The maximum callouts in a single Apex transaction.

B.

The maximum number of parallel Apex callouts in a single continuation.

C.

The limit on long-running requests (total execution time).

D.

The limit of pending operations in the same transaction.

Buy Now
Questions 22

Sales representatives at Universal Containers (UC) use Salesforce Sales Cloud as their

primary CRM. UC owns a legacy homegrown application that stores a copy of customer dataas well. Sales representatives may edit or update Contact records in Salesforce if there is a change.

Both Salesforce and the homegrown application should be kept synchronized for consistency. UC has these requirements:

1. When a Contact record in Salesforce is updated, the external homegrown application should be

2. The synchronization should be event driven.

3. The integration should be asynchronous.

Which option should an architect recommend to satisfy the requirements?

Options:

A.

Leverage Platform Events to publish a custom event message containing changes to the Contact object.

B.

Leverage Change Data Capture to track changes to the Contact object and write a CometD subscriber on the homegrown application.

C.

Write an Apex Trigger with the @future annotation.D Use an ETL tool to keep Salesforce and the homegrown application in sync on a regular candence.

Buy Now
Questions 23

Universal Containers (UC) is a leading provider of management training globally, UC

embarked on a Salesforce transformation journey to allow students to register for courses in the

Salesforce community. UC has a learning system that masters all courses and student

registration.

UC requested a near real-time feed of student registration from Salesforce to the learning

system. The integration architect recommends using Salesforce event.

Which API should be used for the Salesforce platform event solution?

Options:

A.

Tooling API

B.

Streaming API

C.

O REST AP

D.

SOAP API

Buy Now
Questions 24

Only authorized users are allowed access to the EBS and the Enterprise DMS.

Customers call Customer Support when they need clarification on their bills. Customer Support needs seamless access to customer billing information from the E and view generated bills from the DMS.

Which three authorization and authentication needs should an integration consultant consider while integrating the DMS and ESB with Salesforce?

should an integration consultant consider while integrating the DMS and ESB with Salesforce?

Choose 3 answers

Options:

A.

Users should be authorized to view information specific to the customer they are servicing without a need to search for customer.

B.

Identify options to maintain DMS and EBS authentication and authorization details in Salesforce.

C.

Consider Enterprise security needs for access to DMS and EBS.

D.

Consider options to migrate DMS and EBS into Salesforce.

E.

Users should be authenticated into DMS and EBS without having to enter username and password.

Buy Now
Questions 25

The URL for an external service has been changed without prior notice. The service provides up to date money exchange rates that is accessed several times from Salesforce and is a business critical function for end users.

Which two solutions shouldan Integration Architect recommend be implemented to minimize potential downtime for users in this situation?

Choose 2 answers

Options:

A.

Named Credentials

B.

Remote Site Settings

C.

Content Security Policies

D.

Enterprise ESB

Buy Now
Questions 26

What should an Integration architect consider when recommending Platform Events as an Integration solution?

Options:

A.

Event Monitoring Is used to track user activity, such as logins and running reports.

B.

Subscribe to an AssetTokenEvent stream to monitor OAuth 2.0 authentication activity.

C.

When an event definition Is deleted, It's permanently removed and can't be restored.

Buy Now
Questions 27

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

1. An Enterprise Resource Planning (ERP) solution that is responsible for Customer Invoicing and Order fulfillment.

2. 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?

Options:

A.

ERP with all prospect data from Marketing and Salesforce.

B.

Marketing with all customer data from Salesforce and ERP.

C.

Salesforce with relevant Marketing and ERP information.

D.

New Custom Database forCustomers and Prospects.

Buy Now
Questions 28

A global financial company sells financial products and services that include the following:

1. Bank Accounts

2. Loans

3. Insurance

The company has a core banking system that is state of the art and is the master system to store

financial transactions, financial products and customer information. The core banking system

currently processes 10M financial transactions per day. The CTO for the company is considering

building a community port so that customers can review their bank account details, update their

information and review their account financial transactions.

What should an integration architect recommend as a solution to enable customer community

users to view their financial transactions?

Options:

A.

Use Salesforce Connect to display the financial transactions as an external object.

B.

Use Salesforce Connect to display the financial transactions as an external object.

C.

Use Salesforce External Service to display financial transactions in a community lightning

page.

D.

Use Iframe to display core banking financial transactions data in the customer community.

Buy Now
Questions 29

Northern Trail Outfitters (NTO) has an integration set up between a Salesforce org and a quoting system. NTO would like to show a notification to all sales representatives that use Salesforceanytime the quoting system will be taken down for maintenance.

Which Salesforce API should an Integration Architect use to fulfill this requirement?

Options:

A.

Connect REST API

B.

Tooling API

C.

REST API

D.

Streaming API

Buy Now
Questions 30

Northern Trail Outfitters is planning to create a native employee facing mobile app with the look and feel of Salesforce's Lighting Experience. The mobile ap needs to integrate with their Salesforce org.

Which Salesforce API should be used to implement this integration?

Options:

A.

Streaming API

B.

REST API

C.

Connect REST API

D.

User InterfaceAPI

Buy Now
Questions 31

A large enterprise customer operating in a high regulated industry is planning to implement Salesforce for customer facing associates in both Sales and Service, and back-office staff. The business processes that Salesforce supports are critical to the business.

Salesforce will be integrated to multiple back-office systems to provide a single interface for associates. Reliability and monitoring of these integrations are required as associates support customers.

Which integration solution should the architect consider when planning the implementation?

Options:

A.

Architect Services in back-office systems to support callouts from Salesforce and build reliability, monitoring and reporting capabilities.

B.

Decouple back-office system callouts into separate distinct services that have inbuilt error logging and monitoring frameworks.

C.

Build a custom integration gateway to support back-office system integrations and ensure reliability and monitoring capabilities.

D.

Leverage Middleware for all back-office system integrations ensuring real time alerting, monitoring and reporting capabilities.

Buy Now
Questions 32

Northern Trail Outfitters (NTO) uses different shipping services for each of the 34 countries it serves. Services are added and removed frequently to optimize shipping times and costs. Sales Representatives serve all NTO customers globally and need to select between valid service(s) for the customer's country and request shipping estimates from that service.

Which two solutions should an architect propose?

Choose 2 answers

Options:

A.

Use Platform Events to construct and publish shipper-specific events.

B.

Invoke middleware service to retrieve valid shipping methods.

C.

Use middleware to abstract the call to the specific shipping services.

D.

Store shipping services in a picklist that is dependent on a country picklist.

Buy Now
Exam Name: Salesforce Certified Integration Architect (WI24)
Last Update: Apr 19, 2024
Questions: 105

PDF + Testing Engine

$74.7  $165.99

Testing Engine

$51.75  $114.99
buy now Integration-Architect testing engine

PDF (Q&A)

$47.25  $104.99
buy now Integration-Architect pdf