最新のSalesforce Integration-Architect試験問題解答がズラリ [Q25-Q41]

Share

最新のSalesforce Integration-Architect試験問題解答がズラリ

Integration-Architect試験練習テスト問題(更新された108問あります)

質問 # 25
An Integration Architect has built a Salesforce application that integrates multiple systems and keeps them synchronized via Platform Events.
What is taking place if events are only being published?

  • A. The platform events has a trigger in Apex.
  • B. The platform events are published after the Apex transaction completes.
  • C. The platform events are being published from Apex.
  • D. The platform events are published immediately before the Apex transaction completes.

正解:B

解説:
https://developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_events_define_ui.htm


質問 # 26
When user clicks Check Preferences as part of a Lightning flow in Salesforce, preferences from an externally hosted RESTful service are to be checked in real-time. The RESTful service has OpenAPI 2.0 JSON definitions, responding in data types of Boolean and string values.
Which integration pattern and mechanism should be selected to meet the conditions?

  • A. Request-Reply: Enhanced External Services invokes a REST API.
  • B. Data Virtualization: Salesforce Connect map data external REST data in external objects.
  • C. Remote Call-In: Salesforce REST API with REST Composite Resources.
  • D. Fire and Forget: Process-driven platform events publishes events on Salesforce Event Bus.

正解:A


質問 # 27
KiA B2C Enterprise Customer has the following use case that involves processing payment from an external payment gateway service in Salesforce.
1. Customer requests Customer Service Representative (CSR) for a Service upgrade.
2. Customer provides credit card details to CSR for payment.
3. CSR submits payment information in Salesforce, and processed in a
4. CSR receives confirmation of payment.
5. CSR upgrades service for customer and confirms Customer.
external payment gateway.
This use case requires the CSR to obtain confirmation of payment before upgrading the service.
The integration with Payment gateway needs to be reliable and monitored for audit purposes.
The payment gateway service is an external RESTful service that the B2C Enterprise Customer has subscribed for.
What should an Integration Architect recommend for this integration?

  • A. Build a custom Apex Callout to external Payment gateway service and provide success message to the CSR, the details of calloutsand responses are logged for audit purposes.
  • B. Make a callout to the payment gateway through ESB supporting error handling andlogging for audit purposes.
  • C. Platform events allow integration to payment gateway through the exchange ofreal-time event data, platform events are scalable and secure.
  • D. Use External Services feature to integrate gateway to Salesforce ensuring real-timeupdates the CSR and support post payment processes.

正解:B


質問 # 28
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
  • B. Platform Shield Encryption
  • C. Data Masking
  • D. Classic Encryption

正解:B

解説:
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


質問 # 29
Northern Trail Outfitters wants to use Salesforce as a front end for creating accounts using the lead-to-opportunity process.
1. An order is created in Salesforce when the opportunity is closed and won, but the back-end ERP system is the data master for order,
2. Customer wants to be able to see within Salesforce all the stages of order processing like Order Created, Order Shipped, Order Paid that are within the retention window.
Which two message durability considerations should an Integration Architect make when designing a solution to meet these business requirements?
Choose 2 answers

  • A. When subscribing to Salesforce Event bus, ReplaylD is used with a value of -1 to be able to see new events.
  • B. When subscribing to Salesforce Event bus, ReplaylD is used with a value of -2 to be able to see old and new events.
  • C. High-volume event messages are stored for 24 hours (one day).
  • D. High-volume event messages are stored for 72 hours (three days).

正解:B、D

解説:
https://developer.salesforce.com/docs/atlas.en-us.api_streaming.meta/api_streaming/using_streaming_api_durability.htm


質問 # 30
What should an Architect recommend to ensure all integrations to the Northern Trail Outfitters company portal use SSL mutual authentication?

  • A. Enable My Domain and SSL/TLS.
  • B. Generate a Self-signed Certificate.
  • C. Enforce SSL/TLS Mutual Authentication.
  • D. Generate a CA-signed Certificate.

正解:C

解説:
https://help.salesforce.com/articleView?id=security_keys_uploading_mutual_auth_cert.htm&type=5


質問 # 31
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?

  • A. Salesforce B2C Commerce to Service Cloud Connector
  • B. REST API offered by Salesforce Platform
  • C. A REST API offered by Commerce Platform
  • D. Mulesoft Anypoint Platform

正解:A

解説:
https://help.salesforce.com/articleView?id=icx_b2c_conversationalcommerce_connector.htm&type=5


質問 # 32
An Enterprise Customer is planning to implement Salesforce to support case management. Below, is their current system landscape diagram.

Considering Salesforce capabilities, what should the Integration Architect evaluate when integrating Salesforce with the current system landscape?

  • A. Integrating Salesforce with Email Management System, Order Management System and Case Management System.
  • B. Integrating Salesforce with Order Management System, Data Warehouse and Case Management System.
  • C. Integrating Salesforce with Data Warehouse, Order Management and Email Management System.
  • D. Integrating Salesforce with Order Management System, Email Management System and Case Management System.

正解:C


質問 # 33
Northern Trail Outfitters (NTO) has recently implemented middleware for orchestration of services across platforms. The ERP system being used requires transactions be captured near real time at a REST endpoint initiated in Salesforce when creating an order object. Additionally, the Salesforce team has limited development resources and requires a low code solution.
Which two options will fulfill the use case requirements?
Choose 2 answers

  • A. Implement Change Data Capture on the order object and leverage the replay Id in the middleware solution.
  • B. Use Remote Process Invocation fire and forget pattern on insert on the order object using Flow Builder.
  • C. Implement a Workflow Rule with Outbound Messaging to send SOAP messages to the designated endpoint.
  • D. Use a process builder to create a Platform Event, selecting the record type as the Platform Event Name on insert of record.

正解:A、B


質問 # 34
The director of customer service at Northern Trail Outfitters (NTO) wants to capture and trend specific business events that occur in Salesforce in real time. The metrics will be accessed in an ad-hoc manner using an external analytics system. The events that are of interest are:
A customer has initiated a product exchange via a Case A customer service rep clicks on the "Authorize Exchange Product" menu item on the Case A customer has initiated a subscription cancellation via a Case A customer service rep clicks on the "Initiate Refund" menu item on the Case Which two solutions will meet these business requirements?
Choose 2 answers

  • A. Case after insert Trigger that executes a callout.
  • B. Custom Apex controller that publishes a Platform Event.
  • C. Case after insert Trigger that publishes a Platform Event.
  • D. Case Workflow Rule that sends an Outbound Message.

正解:B、C


質問 # 35
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
  • B. Tooling API
  • C. Analytics REST API
  • D. Metadata API

正解:B

解説:
https://developer.salesforce.com/docs/atlas.en-us.api_tooling.meta/api_tooling/tooling_api_objects_apexcodecoverage.htm


質問 # 36
Universal Containers (UC) currently owns a middleware tool and they have developed an API-led integration architecture with three API tiers. The first tier interfaces directly with the systems of engagement, the second tier implements business logic and aggregates data, while the third tier interfaces directly with systems of record. Some of the systems of engagement will be a mobile application, a web application, and Salesforce.
UC has a business requirement to return data to the systems of engagement in different formats while also enforcing different security protocols.
What should an Integration Architect recommend to meet these requirements?

  • A. Leverage an Identity Provider solution that communicates with the API tiers via SAML
  • B. Implement an API gateway that all systems of engagement must interface with first.
  • C. Enforce separate security protocols and return formats at the first tier of the API-led architecture.
  • D. Enforce separate security protocols and return formats at the second tier of the API-led architecture.

正解:B


質問 # 37
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. Implement HttpCalloutMock to return responses per RAML specification.
  • B. Require the Apex REST API Clients to implement the HttpCalloutMock.
  • C. Call the HttpCalloutMock implementation from the Apex REST API Clients.
  • D. Call the Apex REST API Clients in a test context to get the mock response.

正解:A、D


質問 # 38
An architect decided to use Platform Events for integrating Salesforce with an external system for a company.
Which three things should an architect consider when proposing this type of integration mechanism?
Choose 3 answers

  • A. External system needs to have the same uptime in order to be able to keep up with Salesforce Platform Events.
  • B. To publish an event, the integration user in salesforce needs create permission on the event entity.
  • C. Salesforce needs to be able to store information about the external system in order toknow which event to send out.
  • D. Error handling must be performed by the remote service because the event is effectively handed off to the remote system for further processing.
  • E. To subscribe to an event, the integration user in salesforce needs read access to theevent entity.

正解:B、D、E


質問 # 39
Universal Containers (UC) owns a variety of cloud-based applications, including Salesforce, alongside several on premise applications. The on-premise applications are protected behind a corporate network with limited outside access to external systems.
UC would like to expose data from the on-premise applications to Salesforce for a more unified user experience. The data should be accessible from Salesforce in real-time.
Which two actions should be recommended to fulfill this system requirement?
Choose 2 answers

  • A. Develop custom APIs on the company's network that are invokable by Salesforce.
  • B. Deploy MuleSoft to the on-premise network and design externally facing APIs to expose the data.
  • C. Develop an application in Heroku that connects to the on-premise database via an ODBC string and VPC connection.
  • D. Run a batch job with an ETL tool from an on-premise server to move data to Salesforce.

正解:A、B


質問 # 40
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?

  • A. A shared integration user for the three external system integrations.
  • B. A unique integration user for each external system integration.
  • C. A shared Connected App for the three external system integrations.
  • D. A Connected App for each external system integration.

正解:D


質問 # 41
......

あなたを合格させるSalesforce試験にはIntegration-Architect試験問題集:https://www.goshiken.com/Salesforce/Integration-Architect-mondaishu.html

合格させるIntegration-Architect試験情報と無料練習テスト:https://drive.google.com/open?id=1JVsdzc_JludwEUmF62O4m0nWiCT0Zw8L