
[Sep-2021] Mobile-Solutions-Architecture-Designer Pre-Exam Practice Tests | Exam Questions and Answers for Salesforce Architect Exams Study Guide
Salesforce Certified Mobile Solutions Architecture Designer Certification Sample Questions
NEW QUESTION 15
Universal Containers decided to use Salesforce Sales Cloud for their sales processes. Won Opportuinities must be sent to an external source for Order fulfillment. All lint items must also be sent, along with opportunities.
The ERP system has SOAP based web services orders. UC chose to use Apex callouts.Which two design trade-offs must be taken into account when using Apex callouts to SOAP base web services?Choose 2 answers
- A. Appropriate error handling to retry failed messages.
- B. Too many callouts resulting in exceeding the daily limit for number of callouts.
- C. DML operations are not allowed right after Apex callouts.
- D. Code changes may be required following upgrades to the ERP system.
Answer: B,C
NEW QUESTION 16
Universal Containers has built an integration using the SOAP API to load records from a back-office system into Salesforce. The records created in the back-office system must be loaded into Salesforce in almost real time, so a custommodule was written to identify CRUD events in the back-office system and perform sync with Salesforce. UC has several other systems that integrate with Salesforce through the SOAP API using separate integration users.What is a risk involved with this sort of integration?
- A. Reaching a logins per Day limit.
- B. Too many record-lock errors
- C. Too many concurrent sessions
- D. Reaching an API call limit.
Answer: D
NEW QUESTION 17
What are the three capabilities of the Bulk API?Choose 3 answers
- A. Monitor job status via the API.
- B. process multiple batch jobs asynchronously
- C. Roll back all transactions within a batch of 10000 records
- D. Monitor job status via the Web UI.
- E. Process multiple batch jobs synchronously
Answer: A,B,D
NEW QUESTION 18
What are two scenarios that utilize the chatter REST API?Choose 2 answers
- A. When posting status updates to social media.
- B. When integrating chatter into custom mobile apps.
- C. When uploading large files.
- D. When migrating Opportunity data.
Answer: A,B
NEW QUESTION 19
Universal containers is building an integration between their instance of Salesforce and their business partner's fulfillment systems, the security officer would like to ensure that only the authorized data for each business partner is accessible across all interfaces.How should the architect ensure this requirement is met?
- A. Provide each business partner their own username/password with an Apex custom web service to filter the data appropriately.
- B. provide each business partner a shared integration username/password with a specific role/profile provisioned to the appropriate data.
- C. Provide each business partner their own username/password with a specific role/profile provisioned to the appropriate data.
- D. Provide each business partner their own username/password with a shared integration profile provisioned to the appropriate data.
Answer: C
NEW QUESTION 20
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 Bulk API which does not count towards the API limits.
- B. Utilize workflow outbound messaging which does not count towards the API limits.
- C. Migrate the integration to the partner WSDL to support 200 DML operations in a single API call.
- D. Utilize the REST API batch URI to consolidate 100 DML operations into single API call.
Answer: A,D
NEW QUESTION 21
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 22
What are three capabilities of Salesforce Lightning Connect?Choose 3 answers.
- A. Associate external object records to Salesforce Account records.
- B. Write to OData - Compliant data sources without APEX.
- C. Write triggers and workflows on external objects.
- D. Read from OData - Compliant data sources without APEX.
- E. Write SOQL queries on external object.
Answer: A,D,E
NEW QUESTION 23
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 24
Universal containers has built an integration module to pull customer support tickets out of various systems and push them to salesforce as cases. The integration was implemented using Salesforce SOAP API with batch size 200, and the jobs are scheduled to run every 30 minutes to make sure a job completes before the next job starts.After going Live, they found that jobs are failing occasionally due to a "Max CPU time exceeded" error thrown from a trigger on the case. Reducing the batch size to 100 would resolve the issue, but the jobs would then take an average of 35 minutes to run. Which two options should be considered to resolve the issue and make sure a job completes before the next one starts?Choose 2 answers
- A. Bulk API with parallel option and batch size 100, and no code changes.
- B. Bulk API with serial option and batch size 100, and no code changes
- C. No change to API options, and move the trigger code into a Queuetable apex
- D. No change to API options, and move the trigger code into a future method.
Answer: A,D
NEW QUESTION 25
Universal Containers acquiresplanetary shipping and decides to migrate all customercontacts 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. Createa new formula field for (first name+last name + street number) in universal containers org and use it as External ID.
- B. 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.
- C. 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.
- D. Create no new fields, but define the three fields (first name+last name + street number) as External IDs in universal Containers org.
Answer: B,C
NEW QUESTION 26
Which two options should be considered to permit automatic retry of failed updates when loading data into Salesforce?Choose 2 answers
- A. Bulk API with parallel option.
- B. Standard API with serial option.
- C. Standard API with parallel option.
- D. Bulk API with serial option.
Answer: A,D
NEW QUESTION 27
Universal Containers is hearing complaints from users that recently released changes arebreaking existing functionality.What type of testing program should a Technical Architect implement to reduce or eliminate this complaint?
- A. Performance Testing
- B. Unit Testing
C .Regression Testing - C. User Acceptance Testing
Answer: C
NEW QUESTION 28
Universal containers built an integration using the Bulk API to load records from a legacy system into Salesforce, Parallel option with batch size 1000 was used However, the batches often fail due to "Max CPU time exceeded"errors which could be resolved with a Similar batch size.What are two risks involved with batch sizes that are too small?Choose 2 answers
- A. possibility of very long bulk job execution times
- B. Possibilityof hitting the daily limit for number of batches.
- C. Possibility of failures due to record-locking errors.
- D. Possibility of hitting the "Too many concurrent batches" limit.
Answer: A,C
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 Data flow to load Salesforce data, and an ETL tool to load other data sets.
- C. Use data flow to load Salesforce data,and lightning connect to access the other data sets in real time.
- D. Use an ETL tool to join multiple sources and load them into a single data set.
Answer: D
NEW QUESTION 30
An insurance company decides to build an online portal using the Salesforce platform for receiving quote requests from customers. The company has a legacy quoting system that will generate quotes while the rest of the sales process is managed by Salesforce Sales Cloud. The legacy system has an API for creating quotes.What Implementation method should be used so that customers can request quotes online and receive them in real time?
- A. Trigger with an @Future method to send quote requests to the legacy system.
- B. Apex callout to send quote requests from Salesforce to the legacy System.
- C. Middleware tool to pull quote requests from SF and push to the legacy system.
- D. Outbound message to send quote requests from Salesforce to the legacy system.
Answer: B
NEW QUESTION 31
......
Salesforce Exam Practice Test To Gain Brilliante Result: https://www.dumpsquestion.com/Mobile-Solutions-Architecture-Designer-exam-dumps-collection.html