
[Nov-2024] Latest Salesforce Mobile-Solutions-Architecture-Designer exam dumps and online Test Engine
Salesforce Mobile-Solutions-Architecture-Designer: Selling Salesforce Architect Exams Products and Solutions
NEW QUESTION # 44
Universal Containers is currently doing User Acceptance Testing for small changes in a Developer sandbox.
Users are complaining that allow release to production, some functionality is broken and performance is often negatively impacted. What is causing these complaints?
- A. Users should be testingin a Partial Sandbox in order to replicate Production functionality and performance characteristics.
- B. Users should be testing in a Full Sandbox in order to replicate Production functionality and performance characteristics.
- C. Users should be testing in a Developer Pro sandbox in order to replicate Production functionality and performance characteristics.
- D. Users should be testing with date loaded into the Developer sandbox in order to replication Production functionality and performance, characteristics.
Answer: B
NEW QUESTION # 45
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. Create a web-tab in Salesforce directly to the legacy application.
- B. Leverage canvas to display the legacy application within Salesforce.
- C. use the Streaming API to receive order updates in real time.
- D. Migrate the legacy application to Heroku and Integrate the database.
Answer: B
NEW QUESTION # 46
What are the three capabilities of the Bulk API?Choose 3 answers
- A. Process multiple batch jobs synchronously
- B. Roll back all transactions within a batch of 10000 records
- C. Monitor job status via the Web UI.
- D. Monitor job status via the API.
- E. process multiple batch jobs asynchronously
Answer: C,D,E
NEW QUESTION # 47
Which tool would an architect likely leverage while diagnosing issues with an inbound RESTful integration to Salesforce?
- A. Workbench
- B. Data Loader
- C. Force.com SOAP Explorer
- D. Metadata audit trail
Answer: A
NEW QUESTION # 48
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. Build a scheduled ETL job to sync all customer order history in the orders object.
- B. Leverage the REST API to receive orders from the ERP system as they are created.
- C. Leverage Salesforce Lightning Connect to display order information in Salesforce.
- D. write an outbound message to receive orders from ERP system as they are created.
Answer: B
NEW QUESTION # 49
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 a shared integration profile provisioned to the appropriate data.
- B. Provide each business partner their own username/password with a specific role/profile provisioned to the appropriate data.
- C. Provide each business partner their own username/password with an Apex custom web service to filter the data appropriately.
- D. provide each business partner a shared integration username/password with a specific role/profile provisioned to the appropriate data.
Answer: B
NEW QUESTION # 50
Universal Containers is using the enterprise WSDL to integrate their financial system to salesforce, while reading y=the release notes for the upcoming salesforce release thearchitect discovers a new object will be added to the salesforce data model that would be beneficial for the financial system integration. What two actions should the architect take to ensure the new object will be available to the financial system integration?
Choose 2 answers
- A. Download the latest partner WSDL that contains the new object definition to generate web services stubs for the new salesforce object
- B. Migrate to the metadata API to download the new salesforce sObject definition into the financial system integration.
- C. Migrate to the partner WSDL to generate a generic sObject service stub that can be leveraged for existing and future Salesforce objects
- D. Download the latest enterprise WSDL that contains the new object definition to generate Web service stubs for the new Salesforce object.
Answer: B,D
NEW QUESTION # 51
Universal Containers is building a mobile application that connects to Salesforce for reading and updating dataWhat is the appropriate authentication solution?
- A. Prompt for the mobile user's username and password; utilize the Enterprise WSDL login() operation to obtain a session ID.
- B. Prompt for the mobile user's username and Password; utilize the oAuth Username-Password flow to obtain an oAuth token.
- C. Create a mobile Integration user ID whose credentials are stored within the mobile application code.
- D. Redirect to Salesforce via the User-agent oAuth flow to obtain an access token and refresh token.
Answer: D
NEW QUESTION # 52
Universal Containers has a trigger on the Order object to update the parent Acount with the date and time of the last closed Opportunity. An integration that inserts orders for the high-volume customers is failing periodically, with no obvious pattern to the timing of failures.What could be the cause of this issue?
- A. The trigger is failing Unit Tests that access the new data.
- B. Record locking contention on the parent Account.
- C. API limits being limited.
- D. Data skew is causing record locking issues on the Oder Share object.
Answer: B
NEW QUESTION # 53
Universal Containers has an Outbound messaging-Based integration that posts closed opportunities to an ERP system for fulfillment in 1% of the test cases, the integration creates multiple orders for a closed opportunity.Which three steps should a Technical Architect take to diagnose the issue?Choose 3 answers
- A. Review the Enterprise Service Bus logs to make sure that successful orders are being acknowledged
- B. Review the Enterprise Service Bus logs t make sure that orders are being created only one time.
- C. Review the firewall logs to make sure that the outbound messages are being delivered.
- D. Review at the outbound Messaging Audit logs to make sure that the messages are being successfullyprocessed by the target system.
- E. Review at the outbound Messaging Deliverystatus logs to make sure that the messages are being delivered and acknowledged by the target system.
Answer: A,B,E
NEW QUESTION # 54
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 # 55
Universal Containers would like to update their accounting system every time an opportunity is changed to Closed-Won their accounting system occasionally is offline for 3-4 hours to support month-end processing, and they would like the integration design to ensure that no transactions are lost during this down time.Which two integration designs should the architect consider?Choose 2 answers
- A. Utilize workflow outbound messaging, which has a built-in queuing framework.
- B. Utilize an Apex trigger with an @future class to callout to the accounting system after the month-end processing is complete.
- C. Utilize an Enterprise Service Bus to the web service calls between Salesforce and the accounting System.
- D. Utilize the enterprise WSDL to query Salesforce from the Accounting system for opportunities that have changed to Closed-Won.
Answer: A,C
NEW QUESTION # 56
Universal containers(UC) leverages the standard opportunity and opportunity product objects to manage their orders in Salesforce. When a deal is closed, all opportunity information, including products and billing contacts, must be send to their ERP application for order fulfillment. As UC has an "express shipping" guarantee, leadership would like order information sent to ERP as quickly as possible after the deal is closed?
How should an Architect fulfill this requirement?
- A. Write an outbound message to send order information to ERP.
- B. Write a nightly batch job to send customer information to ERP.
- C. Write a visualforce page to send order information to ERP.
- D. Writean opportunity trigger to send order information to ERP.
Answer: D
NEW QUESTION # 57
Universal Containers sells its products online using a system built on Force.com sites. The orders are captures and processed in Salesforce. the company uses an external marketing system and would like to make use of the customer data captured in Salesforce.The marketing system has REST API that can be used to push data into it.Which three options should a Technical Architect consider that do not require building custom web services on the marketing system?Choose 3 answers
- A. Write a custom Apex web service, Which will be called from the marketing system to retrieve customer data.
- B. Use outbound messages to send customer data from Salesforce to the marketing system.
- C. Use Apex callout to send customer data from Salesforce to the marketing system
- D. Use a middleware tool to pull customer data from Salesforce and push it to the marketing system on adaily basis.
- E. Build a custom java application using the Enterprise WSDL to pull data from Salesforce and push it to the marketing system.
Answer: A,B,C
NEW QUESTION # 58
Universal containers is implementing Salesforce for the first time. As part of the implementation, approximately 10 Million contact records need to be migrated into the new environment.What tool should an architect recommend?
- A. Data Import Wizard
- B. Excel connector
- C. Salesforce Data Loader
- D. Salesforce Workbench
Answer: C
NEW QUESTION # 59
In which three ways can production data be moved into a sandbox for testing purpose?
- A. Refresh a Copy Sandbox.
- B. Request a Snapshot from Support
- C. Refresh a Full Sandbox.
- D. use the Apex Data Loader.
- E. Use the metadata API.
Answer: A,C,D
NEW QUESTION # 60
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. IP Whitelisting
- B. Two-way SSL
- C. VPN
- D. Profile Security
Answer: B
NEW QUESTION # 61
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. Encourage code developers and integration developers to work in separate sandboxes.
- D. Implement a continuous Integration process to identify issues earlier in the development process.
Answer: B,D
NEW QUESTION # 62
Universal containers ships millions of orders per year and releases code fixes to the production org mightily.
Their corporate testing strategy requires that tests must be performed against Production data in an isolated test environment before code can be released to production.How can Universal Containers achieve the requirement?
- A. Request that Salesforce to schedule a full sandbox refresh on a nightly basis.
- B. Use Salesforce-to- Salesforce to keep data synchronized between production and full sandboxes.
- C. Create APEX unit tests so testing can be done against Production data, but rolled back before being committed.
- D. Utilize a middleware solution and batch API to do a nightly synch from production to Full sandbox.
Answer: D
NEW QUESTION # 63
What are two reasons an existing custom field cannot be marked as External ID?Choose 2 answers
- A. Maximum number of skinny tables has been reached.
- B. Maximum number of External IDs allowed on an object has been reached,
- C. Maximum number of fields of an object has been reached.
- D. Maximum number of indexes allowed on an object has been reached.
Answer: B,D
NEW QUESTION # 64
Universal Containers would like to integrate Salesforce to their Accounting system. Salesforce must notify the accounting system for every new account that has been created. The security team will not allow Salesforce to integrate directly to the accounting system due to potential security issues.Which three stages should the Architect consider to reduce the security concerns for this Integration use case?Choose 3 answers
- A. Enable platform encryption in the Salesforce org to ensure network communication to the Accounting system is encrypted.
- B. Whitelist the Salesforce IP range on the firewall to ensure only Salesforce- originated traffic can penetrate the network.
- C. Utilize an Enterprise Service Bus to ensure Accounting system credentials are not stores within Salesforce.
- D. Terminate the SSL connection at a reverse proxy in the DMZ which establishes trust in the connection using mutual SSL.
- E. Enable WS-security for the web services made between Salesforce and the accounting system.
Answer: A,C,E
NEW QUESTION # 65
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 InboundEmailHandler to process the messages.
- C. Lightning connect with an oData/SMTP interchange.
- D. Custom Apex class with webservice methods that implement the SMTP protocol.
Answer: D
NEW QUESTION # 66
What are two benefits an Integration Architect should consider when recommending web-to-lead?Choose 2 answers
- A. Web-to-Lead is a simple way to capture responses to marketing landing pages.
- B. web-to-Lead can be used to de-duplicate leads during integrations.
- C. Web-to-Lead requests have their own limits separate from other APIs.
- D. Web-to-Lead can be utilized for Lead data migrations.
Answer: A,C
NEW QUESTION # 67
......
Salesforce is a powerful CRM platform that offers a variety of certifications for professionals seeking to demonstrate their expertise in specific areas of the Salesforce ecosystem. One such certification is the Salesforce Mobile-Solutions-Architecture-Designer certification, which validates a professional’s ability to design and implement mobile solutions on the Salesforce platform.
New 2024 Mobile-Solutions-Architecture-Designer Test Tutorial (Updated 87 Questions): https://www.validvce.com/Mobile-Solutions-Architecture-Designer-exam-collection.html
Reliable Mobile-Solutions-Architecture-Designer Exam Tips Test Pdf Exam Material: https://drive.google.com/open?id=1mSJMhPpImMjYjkgF03oFT5AQyepMY2j8
