
[Dec 18, 2021] Genuine Mobile-Solutions-Architecture-Designer Exam Dumps New 2021 Salesforce Pratice Exam
New 2021 Realistic Mobile-Solutions-Architecture-Designer Dumps Test Engine Exam Questions in here
NEW QUESTION 13
Universal Containers(UC) has a legacy application that tracks customer order status once the order has been sent to the fulfillment department this legacy application does not easily provide an API to integrate with Customer service reps need to be able t access the data from within Sales force and cannot be given separate logins to the application, UC does not have single-sign-on enabled.How should an architect solve this problem?
- A. Leverage canvas to display the legacy application within Salesforce.
- B. use the Streaming API to receive order updates in real time.
- C. Migrate the legacy application to Heroku and Integrate the database.
- D. Create a web-tab in Salesforce directly to the legacy application.
Answer: A
NEW QUESTION 14
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 a new formula field for (first name+last name + street number) in universal containers org and use it as External ID.
- D. Create no new fields, but define the three fields (first name+last name + street number) as External IDs in universal Containers org.
Answer: A,B
NEW QUESTION 15
Universal Containers has decidedthat acquisition of other companies will be a key focus of their growth for the next several years. All acquired customer service agents will use UC's pre-existing customer support process built in Salesforce. the ERP application at any acquired company will not be immediately replaced, and customer service agents must be able to see up-to-date order status from all ERP systems.What recommendation should a technical Architect make to minimize complexity during new acquisitions?
- A. Leverage Apex callouts to integrate directly with acquired applications.
- B. Use an ESB to abstract the Salesforce integration from other enterprise applications.
- C. Build all Integrations as nightly ETL batches to minimize real-time overhead.
- D. Use custom Linksto direct users to the appropriate ERP system to view order status.
Answer: C
NEW QUESTION 16
What are three capabilities of Salesforce to Salesforce(S2S)?Choose 3 answers
- A. Share reports and dashboards between Salesforce orgs.
- B. Integrate data between Salesforce orgs via pre-built web service adapters.
- C. Manually consume data into the consumer org.
- D. Publish data from the publisher's Account object to the consumer's Customer__c object.
- E. Automatically publish data from the publisher org.
Answer: C,D,E
NEW QUESTION 17
Which protocol should an Integration Architect utilize to create a secure channel between Salesforce and other system?
- A. SMTP
- B. TLS
- C. SFTP
- D. SSH
Answer: B
NEW QUESTION 18
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 an Apex class to perform the REST callout asynchronously.
- B. Use an outbound Message with the record's data.
- C. Use lightning connect to save the data to an external object.
- D. use the REST API with the content-Type headerset to "JSON."
Answer: A
NEW QUESTION 19
Universal containers utilizes the REST API to update the multiple Salesforce objects in real time based upon changes from their ERP system. They recently started encountering API Limits and have consulted the Integration Architect on possible solutions.What two possible strategies should the architect consider?Choose
2 answers
- A. Migrate the integration to the partner WSDL to support 200 DML operations in a single API call.
- B. Utilize workflow outbound messaging which does not count towards the API limits.
- C. Utilize the REST API batch URI to consolidate 100 DML operations into single API call.
- D. Migrate the integration to the Bulk API which does not count towards the API limits.
Answer: C,D
NEW QUESTION 20
What are three capabilities of Salesforce Lightning Connect?Choose 3 answers.
- A. Read from OData - Compliant data sources without APEX.
- B. Write to OData - Compliant data sources without APEX.
- C. Write triggers and workflows on external objects.
- D. Write SOQL queries on external object.
- E. Associate external object records to Salesforce Account records.
Answer: A,D,E
NEW QUESTION 21
Universal containers has used Outbound Messaging to integrate with their billing system. Their billing system has frequent outages that don't last more than a couple of hours.Which two aspects of Outbound Messaging might the customer experience issues with as a result of these outages?Choose 2 answers
- A. Orphaned Requests
- B. Out-of-order delivery.
- C. Exceeding Governor Limits.
- D. Duplicate messages
Answer: C,D
NEW QUESTION 22
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 class with webservice methods that implement the SMTP protocol.
- B. Lightning connect with an oData/SMTP interchange.
- C. Custom InboundEmailHandler to process the messages.
- D. Custom Apex batch job to check for SMTP messages.
Answer: A
NEW QUESTION 23
The Integration Team at Universal Containers is frustrated because the developers keep changing the data model and trigger behaviors during development, resulting in frequent rework and unexpected bugs lade in the development process. What two recommendations should a Technical Architect make to resolve this issue?
Choose 2 answers
- A. Implement a Regression Testing policy to catch issues earlier in the development process.
- B. Use a requirements traceability matrix to track data model changes back to the requirement that prompted them.
- C. Implement a continuous Integration process to identify issues earlier in the development process.
- D. Encourage code developers and integration developers to work in separate sandboxes.
Answer: B,C
NEW QUESTION 24
Universal Containers has two integrations to Salesforce; System A requires read-only access to all Opportunity data while System B requires read-write access to all Accounts.Which approach ensures compliance with the principal of least priviledge?
- A. Use a single "Integration User" with profile settings restricted to "view All" for opportunity and "Modify All" for Accounts.
- B. Utilize separate credentials and profiles for each integration, one having "view All" to ties and the other having "Modify All" to Accounts.
- C. Utilize a single "Integration User" with the "Modify All data" profile setting enabled so that all integrations always have access to all data.
- D. Utilize separate credentials for each system with both credentials having the "modify all data" permission on the profile.
Answer: A
NEW QUESTION 25
A system at Universal Containers needs to retrieve opportunity details(including line items and opportunity learn) and then update the opportunity with new information in real time, as one atomic operation.What approach should an architect recommend that conserves API limits?
- A. Use a custom Apex class with a webservice method that performs both actions.
- B. Use a publisher action to update the data and callback to the other system.
- C. Use the SOAP API to upsert the data. The API will then return all opportunity details.
- D. Use the generic streaming API to publish changes and listen for updates.
Answer: A
NEW QUESTION 26
Universal Containers wishes to validate street addresses in Salesforce against their legacy Accounting system,Which is the system of record. Retrieving an Account record in this system takes 7-12 seconds per query, and the address must be validated as quickly as possible to ensure proper order processing.What integration pattern should an Architect suggest?
- A. Nightly batch validating records modified the previous day.
- B. @Future method with an Apex callout.
- C. Outbound Message with a Callback.
- D. Remote Invocation initiated by Middleware
Answer: C
NEW QUESTION 27
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 class with webservice methods that implement the SMTP protocol.
- B. Lightning connect with an oData/SMTP interchange.
- C. Custom InboundEmailHandler to process the messages.
- D. Custom Apex batch job to check for SMTP messages.
Answer: A
NEW QUESTION 28
Universal Containers has just purchased large volume of contact data from an external vendor. The head of sales would like to use the new data set within the existing production org. The production org currently contains a large volume of contacts.What should an Architect recommend to prevent data duplication in salesforce?
- A. Load the data into salesforce and then utilize the contact Duplicate Rule feature
- B. Utilize a batch apex process to de-duplicate the data after loading.
- C. Create a de-duplication trigger before loading the data.
- D. Utilize an off-platform de-duplication tool prior to loading.
Answer: D
NEW QUESTION 29
Universal Containers has chosen Salesforce Wave as their Analytics Platform. There is a requirement to join data from multiple systems(including Salesforce) to be displayed in a single Wave Lens.What should the Architect recommend?
- A. Use an ETL tool to load the data into Salesforce, upserts to ensure that the data in properly joined.
- B. Use an ETL tool to join multiple sources and load them into a single data set.
- C. Use Data flow to load Salesforce data, and an ETL tool to load other data sets.
- D. Use data flow to load Salesforce data,and lightning connect to access the other data sets in real time.
Answer: B
NEW QUESTION 30
Which two approaches should an Integration Architect recommend to allow access to on-premise systems by Salesforce?Choose 2 answers
- A. Whitelist the corporate IPS in Salesforce.
- B. Place the systems in aDMZ.
- C. Utilize two-way(mutual) SSL
- D. Whitelist Salesforce IPs on the firewall.
Answer: C,D
NEW QUESTION 31
......
Grab latest Amazon Mobile-Solutions-Architecture-Designer Dumps as PDF Updated: https://www.preppdf.com/Salesforce/Mobile-Solutions-Architecture-Designer-prepaway-exam-dumps.html
Updated Official licence for Mobile-Solutions-Architecture-Designer Certified by Mobile-Solutions-Architecture-Designer Dumps PDF: https://drive.google.com/open?id=1ao80sk82IGqInOlbE4nhf_bzNV-h6Fd5