Integration-Architect Dumps Free Test Engine Player Verified Updated [Nov 02, 2022]
Q&As with Explanations Verified & Correct Answers
NEW QUESTION 44
Northern Trail Outfitters is creating a distributable Salesforce package for other Salesforce orgs within the company. The package needs to call into a custor Apex REST endpoint in the central org. The security team wants to ensure a specific integration account is used in the central org that they will authorize after installation of the package.
Which three items should an architect recommend to secure the integration in the package?
Choose 3 answers
- A. Use an encrypted field to store the password that the security team enters and use password management for external orgs and set the encryption method to TLS 1.2. Use the Auth Provider configured and select the identity type as Named Principal with OAuth 2.0 as the protocol and
- B. Select Start Authentication Flow on Save.
- C. Contact Salesforce support and create a case to temporarily enable API access for managed packages.
- D. Create an Auth provider in the package and set the consumer key and consumer secret of the connected app in the central org.
- E. Create a connected app in the central org and add the callback URL of each org the package is installed in to redirect to after successful authentication.
Answer: B,D,E
NEW QUESTION 45
A customer is migrating from an old legacy system to Salesforce. As part of the modernization effort, they would like to integrate al existing systems that currently work with their legacy application with Salesforce.
Which three constraints and pain-points should an integration architect consider when choosing the integration pattern/mechanism?
Choose 3 answers
- A. Reporting and usability requirements
- B. Multi-language and multi-currency requirement
- C. Error handling mechanisms
- D. Data Volume and Processing volume
- E. System types - APIs, File systems, Email
Answer: C,D,E
NEW QUESTION 46
A large enterprise customer with the following system landscape is planning to implement Salesforce Sales Cloud.
The following business processes need to be supported in Salesforce:
1. Sales Consultants should be able to have access to current inventory.
2. Enterprise Resource Planning System(ERP) is the system of record for pricing information.
3. Quotes should be generated in Salesforce with pricing from ERP.
4. Sales Management uses a Enterprise Business Intelligence (BI) tool to view Sales dashboards.
5. Master Data Management (MDM) is the system of record for customers and prospects.
6. Invoices should be accessible in Salesforce.
Which systems in the landscape should the Integration Consultant consider to be integrated with Salesforce to support the business requirements?
- A. ERP, Invoices system, Data Warehouse and BI Tool
- B. ERP, MDM, Data Warehouse, Invoices system
- C. ERP, Inventory, Pricing Engine, Invoices system
- D. ERP, MDM, BI tool and Data Warehouse
Answer: C
NEW QUESTION 47
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?
- 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.
Answer: B
Explanation:
D Use an ETL tool to keep Salesforce and the homegrown application in sync on a regular candence.
NEW QUESTION 48
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?
- A. Use Salesforce External Service to display financial transactions in a community lightning page.
- B. Use Iframe to display core banking financial transactions data in the customer community.
- C. Use Salesforce Connect to display the financial transactions as an external object.
- D. Use Salesforce Connect to display the financial transactions as an external object.
Answer: A
NEW QUESTION 49
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?
- A. Make an apex callout using @future annotation to make the call out to all differentagencies.
The response should 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. 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 sa lesforce and update the verification status to "verified".
- D. 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".
Answer: C
NEW QUESTION 50
Northern Trail Outfitters needs to use Shield Platform Encryption to encrypt social security numbers in order to meet a business requirement.
Which two considerations should an Integration Architect do prior to the implementation of Shield Platform Encryption?
Choose 2 answers
- A. Use Shield Platform Encryption as a user authentication or authorization tool.
- B. Encrypt the data using the most current key.
- C. Review shield platform encryption configurations.
- D. Encrypt all the data so that it is secure.
Answer: B,C
NEW QUESTION 51
What is the first thing an Integration Architect should validate if a callout from a Lightning Web Component to an external endpoint is failing?
- A. The endpoint URL has added been to an outbound firewall rule.
- B. The endpoint domain has been added to Cross-Origin Resource Sharing.
- C. The endpoint URL has been added to Content Security Policies.
- D. The endpoint URL has been added to Remote Site Settings.
Answer: C
NEW QUESTION 52
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?
- A. Sum of A and H
- B. Sum of A to H
- C. Sum of A to F
- D. Sum of A, G, and H
Answer: A
NEW QUESTION 53
Universal Containers (UC) is a global financial company. UC support agents would like to open bank accounts on the spot for a customer who is inquiring ab UC products.
During opening the bank account process, the agents execute credit checks for the customers through external agencies. At a given time, up to 30 concurrent rewill be using the service for performing credit checks for customers.
What error handling mechanisms should be built to display an error to the agent when the credit verification process failed?
- A. In case the verification process is down, use fire and forget mechanism instead of request and reply to allow the agent to get the response back when the service is bar online.
- B. In case the verification process is down, Use mock service to send the response to the agent.
- C. Handle integration errors in the middleware in case the verification process is down, thenthe middleware should retry processing the request multiple times.
- D. Handle verification process error in the Verification Webservice API in case there is a connection issue to the Webservice if it responds with an error.
Answer: D
NEW QUESTION 54
An Architect has received a request to prevent employees that leave the company from accessing data in Salesforce after they are deactivated in the company's HR system.
What should an Architect determine before recommending a solution?
- A. Determine inbound integration requirements, then identify frequency.
- B. Determine data access prevention requirements, then identify frequency.
- C. Determine data volume requirements, then identify the loading schedule.
- D. Determine data access prevention requirements, then identify system constraints.
Answer: A
NEW QUESTION 55
Northern Trail Outfitters needs to send order and line items directly to an existing finance application webservice when an order if fulfilled. It is critical that eac order reach the finance application exactly once for accurate invoicing.
What solution should an architect propose?
- A. Trigger invokes Queueable Apex method, with custom error handling process.
- B. Outbound Messaging, which will automatically handle error retries to the service.
- C. Trigger makes @future Apex method, with custom error handling process.
- D. Button press invokes synchronous callout, with user handling retries in case of error
Answer: A
NEW QUESTION 56
A subscription-based media company's system landscape forces many subscribers to maintain multiple accounts and to login more than once. An Identity and Access Management (IAM) system, which supports SAML and OpenId, was recently implemented to improve their subscriber experience through self-registration and Single Sign-On (SSO).
The IAM system must integrate with Salesforce to give new self-service customers instant access to Salesforce Community Cloud.
Which two requirements should the Salesforce Community Cloud support for self-registration and SSO?
Choose 2 answers
- A. SAML SSO and Registration Handler
- B. SAML SSO and just-in-time provisioning
- C. OpenId Connect Authentication Provider and Registration Handler
- D. OpenId Connect Authentication Provider and just-in-time provisioning
Answer: B,C
NEW QUESTION 57
An Architect is required to integrate with an External Data Source via a Named Credential with an Apex callout due to technical constraints.
How is authentication achieved?
- A. Handle authentication in the code.
- B. Connect via Communities.
- C. Handle authentication with login flows.
- D. Connect via Salesforce Connect.
Answer: C
Explanation:
https://help.salesforce.com/articleView?id=named_credentials_define.htm&type=5
NEW QUESTION 58
Northern Trail Outfitters submits orders to the manufacturing system web-service. Recently, the system has experienced outages that keep service unavailable for several days.
What solution should an architect recommend to handle errors during these types of service outages?
- A. Use middleware queuing and buffering to insulate Salesforce from system outages.
- B. Use Outbound Messaging to automatically retry failed service calls.
- C. A Use Platform Event replayld and custom scheduled Apex process to retrieve missed events.
- D. Use @future jobld and custom scheduled apex process to retry failed service calls.
Answer: A
Explanation:
https://developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_events_api_considerations.htm
NEW QUESTION 59
Universal Containers (UC) uses Salesforce to track the following customer data:
1. Leads,
2. Contacts
3. Accounts
4. Cases
Salesforce is considered to be the system of record for the customer. In addition to Salesforce, customer data exists in an Enterprise Resource Planning (ERP) system, ticketing system, and enterprise data lake. Each of these additional systems have their own unique identifier. UC plans on using middleware to integrate Salesforce with the external systems.
UC has a requirement to update the proper external system with record changes in Salesforce and vice versa.
Which two solutions should an Integration Architect recommend to handle this requirement?
Choose 2 answers
- A. Locally cache external ID'S at the middleware layer and design business logic to map updates between systems.
- B. Store unique identifiers in an External ID field in Salesforce and use this to update the proper records across systems.
- C. Design an MDM solution that maps external ID's to the Salesforce record ID.
- D. Use Change Data Capture to update downstream systems accordingly when a record changes.
Answer: C,D
NEW QUESTION 60
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
- A. Reduce batch size of asynchronous BULK API.
- B. Legacy system should submit in parallel mode.
- C. Reduce batch size of synchronous BULK API.
- D. Legacy system should submit in serial mode.
Answer: A,B
NEW QUESTION 61
......
Salesforce Integration-Architect Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
| Topic 5 |
|
| Topic 6 |
|
| Topic 7 |
|
| Topic 8 |
|
Verified Integration-Architect dumps Q&As Latest Integration-Architect Download: https://www.pdftorrent.com/Integration-Architect-exam-prep-dumps.html
Integration-Architect Dumps with Free 365 Days Update Fast Exam Updates: https://drive.google.com/open?id=1lTX9-Sp9gTd1NPEbEgHV079dEnailDjr