Logo Passei Direto
Material
Study with thousands of resources!

Text Material Preview

Salesforce Certified
Platform Integration
Architect (Plat-Arch-
204)
Version: Demo
[ Total Questions: 10]
Web: www.dumpscafe.com
Email: support@dumpscafe.com
Salesforce
Integration-Architect
https://www.dumpscafe.com
https://www.dumpscafe.com/Braindumps-Integration-Architect.html
IMPORTANT NOTICE
Feedback
We have developed quality product and state-of-art service to ensure our customers interest. If you have any 
suggestions, please feel free to contact us at feedback@dumpscafe.com
Support
If you have any questions about our product, please provide the following items:
exam code
screenshot of the question
login id/email
please contact us at and our technical experts will provide support within 24 hours.support@dumpscafe.com
Copyright
The product of each order has its own encryption code, so you should use it independently. Any unauthorized 
changes will inflict legal punishment. We reserve the right of final explanation for this statement.
Salesforce - Integration-ArchitectPass Exam
1 of 7Verified Solution - 100% Result
A. 
B. 
C. 
D. 
E. 
Question #:1
A largeB2C customer is planning to implement Salesforce CRM to become a Customer centric enterprise. 
Below, is their current system landscape diagram.
The goals for implementing Salesforce follows:
1. Develop a360 view of customer
2. Leverage Salesforce capabilities for Marketing, Sales and Service processes
3. Reuse Enterprise capabilities built for Quoting and Order Management processes
Which three systems from the current system landscape can be retired withthe implementation of Salesforce?
Choose 3 answers
Order Management System
Case Management System
Sales Activity System
Email Marketing System
Quoting System
Answer: B C D
Explanation
The three systems from the current system landscape that can beretired with the implementation of Salesforce 
are Case Management System, Sales Activity System, and Email Marketing System. These systems can be 
replaced by Salesforce Service Cloud, Sales Cloud, and Marketing Cloud respectively, which provide similar 
orbetter capabilities for managing cases, sales activities, and email campaigns. Option A is not correct 
because Order Management System cannot be retired with the implementation of Salesforce. The company 
wants to reuse their existing enterprise capabilities for order management processes, which are likely to be 
complex and customized. Salesforce does not provide a native order management solution for B2C commerce 
scenarios. Option E is not correct because Quoting System cannot be retired with the implementation of 
Salesforce. The company wants to reuse their existing enterprise capabilities for quoting processes, which are 
likely to be complex and customized. Salesforce does not provide a native quoting solution for B2C 
commerce scenarios.
Question #:2
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
Salesforce - Integration-ArchitectPass Exam
2 of 7Verified Solution - 100% Result
A. 
B. 
C. 
D. 
A. 
B. 
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 ApexREST API Clients unit testsconfirm adherence to the RAML
specs?
Choose 2 answers
Call the Apex REST API Clients in a test context to get the mock response.
Require the Apex REST API Clients to implement the HttpCalloutMock.
Call the HttpCalloutMock implementation from theApex REST APIClients.
Implement HttpCalloutMock to return responses per RAMLspecification.
Answer: A D
Explanation
The HttpCalloutMock interface allows testing HTTP callouts by returning a predefined response in a test 
context. By implementing HttpCalloutMockto return responses per RAML specification, the Apex REST API 
Clients unit tests can confirm that the API requests and responses match the expected format and values. 
Calling the Apex REST API Clients in a test context to get the mock response is also necessary to verify the 
adherence to the RAML specs. Calling the HttpCalloutMock implementation from the Apex REST API 
Clients or requiring the Apex REST API Clients to implement the HttpCalloutMock are not valid options 
because the HttpCalloutMock interface is implemented by a separate class that is passed as a parameter to the 
Test.setMock method2
References: 1: Idempotent REST APIs 2: Testing HTTP Callouts by Implementing the HttpCalloutMock 
Interface
Question #:3
Universal Containers has a requirement for all accounts that do NOT qualify forabusiness extension (Custom 
field on the account record) for the next month to send a meeting invite to their contacts from the marketing 
automation system to discuss the next steps. It is estimated there will be approximately 1MilIion contacts per 
month.
What is the recommended solution?
Use Batch Apex.
Use Time-based workflow rule.
Salesforce - Integration-ArchitectPass Exam
3 of 7Verified Solution - 100% Result
C. 
D. 
A. 
B. 
C. 
A. 
B. 
C. 
Use Process builder.
Use Trigger.
Answer: B
Explanation
The recommended solution is to use a time-based workflow rule. A time-based workflow rule is a type of 
workflow rulethat executes actions at a specific time, such as a certain number of days before or after a record 
field value. By using a time-based workflow rule, you can send an email alert to the contacts of the accounts 
that do not qualify for a business extension for the next month, and include a meeting invite in the email. This 
solution can handle large volumes of data and does not require any custom code. Using batch Apex, process 
builder, or trigger is not a recommended solution because they are more complex andrequire custom code or 
configuration. Batch Apex is a way to run large-scale and long-running jobs that operate on many records. 
Process builder is a tool that lets you automate business processes by creating a process with criteria and 
actions. Trigger is a type of Apex code that executes before or after database operations, such as insert, 
update, delete, or undelete.
Question #:4
A developer has been tasked by the integration architect to build a solution based on the Streaming API. The 
developer has done some research and has found there are different implementations of the events in 
Salesforce (PushTopic Events, Change Data Capture, Generic Streaming, Platform Events), but is unsure of 
how to proceed with the implementation and asks the system architect for some guidance.
What should the architect consider when making the recommendation?
Change Data Capture can be published from Apex.
PushTopic Events can define a custom payload.
Change Data Capture does not have record access support.
Answer: C
Question #: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?
Create a connected app in the affiliate org and select the "Accept CometD API Requests".
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.
Salesforce - Integration-ArchitectPass Exam
4 of 7Verified Solution - 100% Result
C. 
D. 
A. 
B. 
C. 
D. 
Configure External Services to call the subscriber in Apex in the Onchange Trigger event as part of the 
flow.
Create a PushTopic update event on the Opportunity Object to allow the subscriber to react to the 
streaming API.
Answer: D
Explanation
Streaming API is the best option for sending real-time notifications of changes to Salesforce data. StreamingAPI uses a publish-subscribe model to push relevant data to subscribers without polling. Streaming API 
supports PushTopic events, which are based on SOQL queries that define the data changes to listen for. The 
affiliate company can subscribe to a PushTopic event on the NTO Salesforce org and receive notifications 
whenever the data that matches the query changes. This way, the affiliate company can be informed of any 
updates to the opportunities in the NTOSalesforce instance.
Question #:6
A new Salesforce program has the followinghigh level abstract requirement: Business
processes executed on Salesforce require data updates between the internal systems and Salesforce Which 
three relevant details should a Salesforce Integration Architect seek to specifically solve for 
Integrationarchitecture needs of the program?
Which three relevant details should a Salesforce Integration Architect seek to specifically solve for Integration 
architecture needs of the program?
Choose 3 answers
Source and Target system, Directionality, data volume & transformation complexity long with any 
middleware that can be leveraged.
Integration skills, SME availability and Program Governance details.
Timing aspects - real-time/near real-time (synchronous or asynchronous), batch; update frequency.
Integration Style Process based, Data based, Virtual integration.E Core functional and non-functional 
requirements for User Experience design, Encryption needs, Community, and license choices.
Answer: A C D
Explanation
The correct answer is A, C, and D. These are three relevant details that a Salesforce Integration Architect 
should seek to specifically solve for Integration architecture needs of the program. These detailscan help the 
Integration Architect to understand the scope, requirements, and constraints of the integration solution, and to 
choose the appropriate tools, methods, and patterns. The details are:
Salesforce - Integration-ArchitectPass Exam
5 of 7Verified Solution - 100% Result
A. 
B. 
C. 
D. 
Source and Target system, Directionality, data volume & transformation complexity along with any 
middleware that can be leveraged. This detail can help theIntegration Architect to identify the systems 
involved in the integration, the direction of data flow, the amount and complexity of data to be exchanged, 
and the middleware or platform capabilities that can facilitate the integration.
Timing aspects - real-time/near real-time (synchronous or asynchronous), batch; update frequency. This detail 
can help the Integration Architect to determine the latency, reliability, and scalability requirements of the 
integration solution, and to choose the suitable integration protocols and techniques.
Integration Style - Process based, Data based, Virtual integration. This detail can help the Integration 
Architect to select the appropriate integration style that matches the business needs and objectives. Process 
based integration focuses on orchestrating business processes across systems, data based integration focuses 
on synchronizing data across systems, and virtual integration focuses on providing a unified view of data 
across systems.
References: Certification - Integration Architect - Trailhead, [Integration Patterns and Practices]
Question #:7
Which two requirements should the Salesforce Community Cloud support for self-registration and SSO?
Choose 2answers
SAML SSO and Registration Handler
OpenId Connect Authentication Provider and Registration Handler
SAML SSO and just-in-time provisioning
OpenId Connect Authentication Provider and just-in-time provisioning
Answer: B C
Explanation
OpenId ConnectAuthentication Provider and Registration Handler, and SAML SSO and just-in-time 
provisioning are two requirements that the Salesforce Community Cloud can support for self-registration and 
SSO. OpenId Connect is a protocol that allows users to authenticatewith an external identity provider and 
access Salesforce resources. A registration handler is a class that implements the Auth.RegistrationHandler 
interface and defines the logic for creating or updating a user in Salesforce after authentication. SAML SSOis 
a protocol that allows users to log in to Salesforce with a single click, using an assertion from an identity 
provider that confirms the user’s identity. Just-in-time provisioning is a feature that allows Salesforce to 
create or update a user account based on the information in the SAML assertion. References: Certification - 
Integration Architect - Trailhead, [OpenID Connect Authentication Providers], [SAML Single Sign-On (SSO) 
Service for Salesforce]
Question #:8
Salesforce - Integration-ArchitectPass Exam
6 of 7Verified Solution - 100% Result
A. 
B. 
C. 
D. 
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?
UseSalesforce Connect to display the financial transactions as an external object.
Use Salesforce Connect to display the financial transactions as an external object.
Use Salesforce External Service to display financial transactions in a community lightningpage.
Use Iframe to display core banking financial transactions data in the customer community.
Answer: A
Explanation
The integration architect should recommend using Salesforce Connect to display the financial transactions as 
an external object. SalesforceConnect is a feature that allows you to integrate external data sources with 
Salesforce and access them in real time via external objects. External objects are similar to custom objects, 
but they store metadata only and not data. You can use external objects to display data from the core banking 
system in the customer community without copying or syncing the data. You can also use standard Salesforce 
features, such as reports, dashboards, or global search, with external objects. Salesforce External Serviceis a 
feature that allows you to import an external schema definitionand generate an Apex wrapper class that can 
invoke an external service. This is useful for integrating complex business processes or workflows with 
Salesforce, but not for displaying datain a community lightning page. Iframe is a HTML element that allows 
you to embed another web page within a web page. This is not a recommended solution for displaying data in 
a customer community, as it can pose security risks, performance issues, or userinterface problems.
References: [Salesforce Connect], [Salesforce External Services], [Using Iframes in Lightning Components]
Question #:9
Salesforce - Integration-ArchitectPass Exam
7 of 7Verified Solution - 100% Result
A. 
B. 
C. 
A. 
B. 
C. 
D. 
A customer is migrating from an old legacy system to Salesforce. As part of the modernization effort, the 
customer would like to integrate all existing systems that currently work with its legacy application with 
Salesforce.
Which constraint/pain-point should an integration architect consider when choosing the integration pattern
/mechanism?
Multi-language and multi-currency requirement
System types APIs, File systems, Email
Reporting and usability requirements
Answer: B
Question #:10
A company's security assessment noted vulnerabilities on the unmanaged packages in its Salesforce orgs; 
notably, secrets that are easily accessible and in plain text, such as usernames, passwords, and OAuth tokens 
used in calloutsfrom Salesforce.
Which persistence mechanisms should an integration architect require to be used to ensure that secrets are 
protected from deliberate or inadvertent exposure?
Encrypted Custom Fields and Protected Custom Settings
Named Credentials and Protected Custom Settings
Protected Custom Metadata Types and Named Credentials
Named Credentials and Encrypted Custom Fields
Answer: B
About dumpscafe.com
dumpscafe.com was founded in 2007. We provide latest & high quality IT / Business Certification Training Exam 
Questions, Study Guides, Practice Tests.
We help you pass any IT / Business Certification Exams with 100% Pass Guaranteed or Full Refund. Especially 
Cisco, CompTIA, Citrix, EMC, HP, Oracle, VMware, Juniper, Check Point, LPI, Nortel, EXIN and so on.
View list of all certification exams: All vendors
 
 
 
We prepare state-of-the art practice tests for certification exams. You can reach us at any of the email addresses 
listed below.
Sales: sales@dumpscafe.com
Feedback: feedback@dumpscafe.com
Support: support@dumpscafe.com
Any problems about IT certification or our products, You can write us back and we will get back to you within 24 
hours.
https://www.dumpscafe.com
https://www.dumpscafe.com/allproducts.html
https://www.dumpscafe.com/Microsoft-exams.html
https://www.dumpscafe.com/Cisco-exams.html
https://www.dumpscafe.com/Citrix-exams.html
https://www.dumpscafe.com/CompTIA-exams.html
https://www.dumpscafe.com/EMC-exams.html
https://www.dumpscafe.com/ISC-exams.html
https://www.dumpscafe.com/Checkpoint-exams.html
https://www.dumpscafe.com/Juniper-exams.html
https://www.dumpscafe.com/Apple-exams.html
https://www.dumpscafe.com/Oracle-exams.html
https://www.dumpscafe.com/Symantec-exams.html
https://www.dumpscafe.com/VMware-exams.html
mailto:sales@dumpscafe.com
mailto:feedback@dumpscafe.com
mailto:support@dumpscafe.com