Free Salesforce Integration-Architecture-Designer Study Guides Exam Questions & Answer [Q30-Q50]

Share

Free Salesforce Integration-Architecture-Designer Study Guides Exam Questions and Answer

Integration-Architecture-Designer Exam Dumps, Integration-Architecture-Designer Practice Test Questions

NEW QUESTION # 30
What are three capabilities of Salesforce outbound messaging?
Choose 3 answers

  • A. Define a custom WSDL based upon an Apex Interface class definition.
  • B. Define a WSDL based upon 2 objects related via Master-Detaikls relationship.
  • C. Repeatedly send a SOAP notification for up to 24 hours until an acknowledgement is received.
  • D. Build integration components without the Use of APEX.
  • E. Provide a session ID as part of the outbound message.

Answer: C,D,E


NEW QUESTION # 31
Universal Containers would like to integrate to an external system from Salesforce over a secure channel howeverthe external system does not support HTTP-basic authentication What approach should an integration Architect recommend that enables the external system to trust the data being received?

  • A. Base64 encode the data to ensure untrusted 3rd parties don't see it.
  • B. Include a secret passphrase in the payload that is a validated by the external system.
  • C. Utilize a 3rd-party SSO solution to authenticate the session.
  • D. Digitally sign the Payload using a private key trusted by the external system.

Answer: A


NEW QUESTION # 32
Universal Containers has a batch integration that runs every five minutes to load Shipment records related to existing orders that have been updated in the previous five minutes. the integration is not reporting any errors, but some Shipment records are not being loaded.
What could be the problem?

  • A. Error reporting is not enabled in Salesforce.
  • B. The integration is causing UC to exceedits API limits
  • C. The Integration cannot find the parent orders for some Shipments.
  • D. The integration takes more than five minutes to run.

Answer: D


NEW QUESTION # 33
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?

  • A. Create a PushTopic update event on the Opportunity Object to allow the subscriber to react to the streaming API.
  • B. A Implement a polling mechanism in the client that calls the SOAP API getupdated method to get the ID values of each updated record.
  • C. Create a connected app in the affiliate org and select the "Accept CometD API Requests".
  • D. Configure External Services to call the subscriber in Apex in the Onchange Trigger event as part of the flow.

Answer: A


NEW QUESTION # 34
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?

  • A. 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.
  • B. Implement an Enterprise Service Bus for service orchestration, mediation, routing and decouple dependencies across systems.
  • C. 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.
  • D. 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.

Answer: A


NEW QUESTION # 35
A conglomerate is designing a Lightning Web Component (LWC) to display transactions aggregated from different sources. Their current system landscape is asfollows:
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 thenecessary 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?

  • A. Publish a Platform Event, have the middleware subscribe and update the custom object on receipt of Platform Event.
  • B. Call the Enterprise APIs directly from the LWC's JavaScript code and redisplay the LWC on receipt of the API response.
  • C. Use the Continuation class to call the Enterprise APIs and then process the responsein a callback method.
  • D. Let the Lightning Data Service with an @wire adapter display new values when the custom object records change.

Answer: B


NEW QUESTION # 36
Universal Containers has a requirement to update the Salesforce Account object any time the corresponding account is updated within their financial system.
Which three Salesforce capabilities should the Architect consider?

  • A. Partner WSDL because of a requirement to utilize REST-based web services
  • B. Partner WSDL because of a requirement to dynamically inspect field names during runtime.
  • C. Partner WSDL because of a requirement to utilize SOAP-based web services.
  • D. Enterprise WSDL because of a requirement to utilize SOAP-based services
  • E. Streaming API because of a requirement to dynamically inspect field names during runtime.

Answer: B,C,D


NEW QUESTION # 37
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?

  • A. Create a special user solely for the integration purposes.
  • B. Create a new user with System Administrator profile.
  • C. Authenticate the integration using existing Single Sign-On.
  • D. Authenticate the integration using existing Network-BasedSecurity.

Answer: A


NEW QUESTION # 38
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. Implement idempotent design and have Sales Representatives retry order(s) in question.
  • B. Use scheduled apex to query manufacturing system for potential duplicate or missing orders.
  • C. Have scheduled Apex resubmit orders that do not have a successful response.
  • D. Use Outbound Messaging to ensure manufacturing acknowledges receipt of order.

Answer: D


NEW QUESTION # 39
Universal Containers has a requirement for all accounts that do NOT qualify for a business 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?

  • A. Use Trigger.
  • B. Use Batch Apex.
  • C. Use Process builder.
  • D. Use Time-based workflow rule.

Answer: B


NEW QUESTION # 40
A company that is a leading provider of training delivers courses to students globally. The company decided to use customer community in order to allow studer to log in to the community, register for courses and pay course fees. The company has a payment gateway that takes more than 30 seconds to process the payn transaction. Students would like to get the payment result in real-time so in case an error happens, the students can retry the payment process.
What is the recommended integration approach to process payments based on this requirement?

  • A. Use request and reply to make an API call to the payment gateway.
  • B. Use continuation to process payment to the payment gateway.
    C Use change data capture to process payment to the payment gateway.
  • C. Use platform event to process payment to the payment gateway.

Answer: B


NEW QUESTION # 41
What are two considerations to make when performing SOAP callouts from within Apex?
Choose 2 answers

  • A. SOAP callouts consume API limits.
  • B. WSDL2Apex can be used to generate stub code.
  • C. SOAP callouts cannot occur after any DML statements.
  • D. WSDL2Apex supports RPC-style SOAP callouts.

Answer: B,C


NEW QUESTION # 42
Northern Trail Outfitters has a registration system that is used for workshops offered at its conferences.
Attendees use a Salesforce community to register for workshops, but the scheduling system manages workshop availability based on room capacity. It isexpected that there will be a big surge of requests for workshop reservations when the conference schedule goes live.
Which integration pattern should be used to manage the influx in registrations?

  • A. Remote Call-In
  • B. Batch Data Synchronization
  • C. Remote Process Invocation-Request and Reply
  • D. RemoteProcess Invocation-Fire and Forget

Answer: B


NEW QUESTION # 43
Universal containers has an ERP application where all customer orders are stored. There are millions of customer orders stored in the ERP application and a longtime customer may have thousands of individual orders. Additionally, some order informationmay house personally identifiable information that, due to company policy, can only be stored in ERP. Universal Containers would like the five most recent orders displayed on the account page in Salesforce How should an architect design this requirement considering both security and scalability?

  • A. Leverage Salesforce Lightning Connect to display order information in Salesforce.
  • B. write an outbound message to receive orders from ERP system as they are created.
  • C. Build a scheduled ETL job to sync all customer order history in the orders object.
  • D. Leverage the REST API to receive orders from the ERP system as they are created.

Answer: D


NEW QUESTION # 44
Universal Containers (UC) has third-party MDM database which is responsible for maintaining the data for Customer and Contacts information for its organization. UC wants to keep this information up-to-date in Salesforce so that the information is as current as possible. UC wants to provide bi-directional synchronization of the data between the MDM and Salesforce.
What is the recommended approach to solving this problem?

  • A. Create a Batch process that runs every 5 minutes to pull the changes from MDM and any updates from Salesforce.
  • B. Create a VisualForce page for Accounts/Contacts that will pull the data from MDM, display it, and send any changes from Salesforce.
  • C. Implement a third-party middleware tool to maintain the synchronization between Salesforce and the MDM database as they occur.
  • D. Modify the MDM database application to send and receive updates to and from Salesforce via REST or SOAP as they occur.

Answer: C


NEW QUESTION # 45
A company's security assessment noted vulnerabilities on the un managed packages in their Salesforce orgs, notably secrets that are easily accessible and in plain text, such as usernames, passwords, and OAuth tokens used in callouts from Salesforce.
Which two persistence mechanisms should an integration architect require to be used to ensure that secrets are protected from deliberate or inadvertent exposure?
Choose 2 answers

  • A. Named Credentials
  • B. Protected Custom Metadata Types
  • C. Protected Custom Settings
  • D. Encrypted Custom Fields

Answer: A,C


NEW QUESTION # 46
A company's security assessment noted vulnerabilities on the un managed packages in their Salesforce orgs, notably secrets that are easily accessible and in plain text, such as usernames, passwords, and OAuth tokens used in callouts from Salesforce.
Which two persistence mechanisms should an integration architect require to be used to ensure that secrets are protected from deliberate or inadvertent exposure?
Choose 2 answers

  • A. Encrypted Custom Fields
  • B. Named Credentials
  • C. Protected Custom Settings
  • D. Protected Custom Metadata Types

Answer: A,B


NEW QUESTION # 47
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, G, and H
  • B. Sum of A and H
  • C. Sum of A to H
  • D. Sum of A to F

Answer: B


NEW QUESTION # 48
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
  • B. REST API
  • C. Apex REST
  • D. Streaming API

Answer: A


NEW QUESTION # 49
An organization needs to integrate Salesforce with an external system and is considering authentication options. The organization already has implemented SAML, using a third-party Identity Provider for integrations between other systems.
Which use case can leverage the existing SAML integration to connect Salesforce with other internal systems?

  • A. Make an API inbound integration from an external Java client more secure.
  • B. Make Apex SOAP outbound integrations to external web services more secure.
  • C. A Make Apex REST outbound integrations to external web services more secure.
  • D. Make formula fields with HYPERLINK() to external web servers more secure.

Answer: C


NEW QUESTION # 50
......

Latest Integration-Architecture-Designer Actual Free Exam Questions Updated 108 Questions: https://passguide.prep4pass.com/Integration-Architecture-Designer_exam-braindumps.html