[Oct 16, 2021] Step by Step Guide to Prepare for Mobile-Solutions-Architecture-Designer Exam BrainDumps [Q51-Q67]

Share

Oct 16, 2021 Step by Step Guide to Prepare for Mobile-Solutions-Architecture-Designer Exam BrainDumps

Salesforce Architect Exams Mobile-Solutions-Architecture-Designer Real Exam Questions and Answers FREE Updated on 2021

NEW QUESTION 51
Universal Containers acquiresplanetary shipping and decides to migrate all customer contacts of planetary Shipping into Universal Containers Salesforce org Due to the lack of common unique identifier, they decide that a combination of first name, last name and street address could be used as a key to identify duplicate contacts. These three fields are populated on all contacts in both the systems.Which two methods should be considered to load contacts into Universal Containers org and avoid creation of duplicate contacts?Choose 2 answers

  • A. Create a new text field to contain a hashed value for (first name+last name + street number) in Universal containers org and define it as External ID.
  • B. Create an indexed formula field for (first name+last name + street number) so that a search can be done on the key before loading records.
  • C. Create no new fields, but define the three fields (first name+last name + street number) as External IDs in universal Containers org.
  • D. Create a new formula field for (first name+last name + street number) in universal containers org and use it as External ID.

Answer: A,B

 

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

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

Answer: B,C,E

 

NEW QUESTION 53
Universal Containers has an integration that runs nightly to update the Product (Product2) object in Salesforce with updated product availability for over 500,000 products. The source system is green screen ERP that must be taken offline to produce nightly production reports such as the inventory availability report used for this integration. The Salesforce integration frequently reports failures due to data validation errors.Which two steps should the Technical Architect should recommend?Choose 2 answers

  • A. Review the Salesforce data model and Validation rules and modify the integration as necessary.
  • B. Use SOAP headers to turn off validation rules and triggers during the integration.
  • C. Implements a regression testing policy to detect issues following development.
  • D. Ask the ERP report designers to redesign the report to provide properly formatted data.

Answer: A,C

 

NEW QUESTION 54
Universal containers is building an integration from their employee portal to salesforce Chatter.They would like their employee portal to read and write to the Chatter API on behalf of the employee using the portal.
What is the correct way to authenticate to the chatter API to meet this requirement?

  • A. Use a chatter API integration user which authenticatesto Salesforce using Enterprise WSDL login().
  • B. Use oAuth to authorize the portal to access the chatter API on behalf of the user.
  • C. Use oAuth Which will pass their portal credentials to the chatter API.
  • D. Use a chatter API integrationuser which authenticates to salesforce using oAuth.

Answer: D

 

NEW QUESTION 55
Universal Containers has a customer setup process that relies on external database to send customers welcome
& registration emails. When a customer contacts Universal containers via phone they need to receive the welcome email shortly following the conversation with the UC representative. Universal containers representatives work exclusively in Salesforce and any new customer contacts are created in Salesforce by the representative. The external database exposes a SOAP API for integration with other applications.What Salesforce technology best fulfills this requirement?

  • A. Write an outbound message to send customer Information to an ESB.
  • B. Write a trigger with an @future method to send customer Information to the external database
  • C. Write an outbound message to send customer Information to the external database.
  • D. Write a nightly batch synchronization to send customer information to the external database.

Answer: C

 

NEW QUESTION 56
Universal Container needs to integrate Salesforcewith several home-grown systems. These systems require custom code to be written in order to integrate with them, and the CIO argues that if custom code needs to be written, then there is no reason to invest in middleware.Which three considerations should an Architect bring up to the CIO?Choose 3 answers

  • A. Performance
  • B. Orchestration
  • C. Logging
  • D. Bulkification
  • E. Error Handling

Answer: B,C,E

 

NEW QUESTION 57
Universal containers is migrating to Salesforce from a legacy system with existing SMTP-based integrations.
What Salesforce platform capability should an Integration Architect consider?

  • A. Custom Apex batch job to check for SMTP messages.
  • B. Custom Apex class with webservice methods that implement the SMTP protocol.
  • C. Lightning connect with an oData/SMTP interchange.
  • D. Custom InboundEmailHandler to process the messages.

Answer: B

 

NEW QUESTION 58
Universal Containers is building an integration between Salesforce and their Accounting system. The integration will utilize outbound messaging with call back pattern to Salesforce. The security officer would like to understand the authentication solution.What are the three ways that the call back can authenticate itself to Salesforce?Choose 3 answers

  • A. Utilize the partner WSDL with oAuth to obtain a valid oAuth token for the session ID.
  • B. Utilize the Enterprise WSDL login() operation to obtain a new session ID.
  • C. Utilize the session ID contained within the outbound message notification as the authorization header.
  • D. Utilize an oAuth Username-Password flow to obtain a new oAuth token for the session ID.
  • E. Utilize the REST API login() operation to obtain a new session ID

Answer: B,C,E

 

NEW QUESTION 59
Universal Containers wants to ensure Salesforce will only accept secure connections from their ETL tool.How should calls to a custom Apex web service be secured?

  • A. Profile Security
  • B. VPN
  • C. Two-way SSL
  • D. IP Whitelisting

Answer: C

 

NEW QUESTION 60
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. The Integration cannot find the parent orders for some Shipments.
  • B. The integration is causing UC to exceedits API limits
  • C. Error reporting is not enabled in Salesforce.
  • D. The integration takes more than five minutes to run.

Answer: D

 

NEW QUESTION 61
What are the two considerations of Apex REST services that an integration architect should keep in mind when building custom integrations?Choose 2 answers

  • A. They require unit and functional testing
  • B. They consume more API limits than SOAP or REST API
  • C. They cannot utilize publisher actions.
  • D. They cannot be built or maintained declaratively

Answer: C,D

 

NEW QUESTION 62
What Salesforce technology should an Integration Architect consider when needing to securely expose an external system User Interface from within the Salesforce UI and provide that system with information about the user?

  • A. Canvas
  • B. Visualforce
  • C. Lightning Component
  • D. Custom Web Tab

Answer: A

 

NEW QUESTION 63
What capability should an Integration Architect consider if there is a need to synchronize data changed in Salesforce to a 3rd party with a JSON-based API endpoint?

  • A. Use lightning connect to save the data to an external object.
  • B. Use an Apex class to perform the REST callout asynchronously.
  • C. use the REST API with the content-Type headerset to "JSON."
  • D. Use an outbound Message with the record's data.

Answer: B

 

NEW QUESTION 64
What should an integration Architect consider when building a visulaforce page that makes client-side callouts to multiple domains that may violate the browser's same-origin policy?Choose 2 answers

  • A. Ensure each javascript resource communicates only with its origin.
  • B. Setup CORS to whitelist all domains that the client scripts communicate with.
  • C. utilize the canvas SDK to perform the callouts.
  • D. Set up Remote site settings for all domains that the client scripts communicate with.

Answer: B,D

 

NEW QUESTION 65
Which mechanism should an Integration Architect recommend to make a secure, authenticated connection to a remote system that results in the remote system trusting Salesforce?

  • A. Use a pre-shared key in a query parameter.
  • B. Encrypt the Payload with a shared key.
  • C. Utilize CA - signed certificates on the host.
  • D. Implement two way (or mutual) SSL certificates.

Answer: C

 

NEW QUESTION 66
Universal Containers has a requirement to query all Account records within Salesforce that were updated in the last 24 hours and download those Accounts to their data warehouse on a nightly basis. They expect the volume of records to be between 500-1500 records per day.What three techniques should an Architect consider?Choose 3 answers

  • A. Leverage a time-based workflow action to trigger an account outbound message notification for all records updated within the last 24 hours.
  • B. Leverage the REST API / sObjects / Account / updated URI to retrieve Accounts records updated within the last 24 hours.
  • C. Leverage a third party tool ETL with a dynamic changing SOQL to retrieve Accounts updated within the last 24 hours.
  • D. Leverage the Enterprise WSDL getUpdated() operation to retrieve Account records updated within the last 24 hours.
  • E. Leverage the Salesforce Data Replication API getUpdated() operation to retrieve Accounts records updated within the last 24 hours.

Answer: C,D,E

 

NEW QUESTION 67
......

Ultimate Guide to Prepare Mobile-Solutions-Architecture-Designer Certification Exam for Salesforce Architect Exams: https://www.exams-boost.com/Mobile-Solutions-Architecture-Designer-valid-materials.html