Labour Day Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: geek65

Mobile-Solutions-Architecture-Designer Salesforce Certified Mobile Solutions Architecture Designer(SP23) Questions and Answers

Questions 4

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

Options:

A.

Setup CORS to whitelistall domains that the client scripts communicate with.

B.

utilize the canvas SDK to perform the callouts.

C.

Ensure each javascript resource communicates only with its origin.

D.

Set up Remote site settings for all domains that the client scripts communicate with.

Buy Now
Questions 5

Universal Containers is building a mobile application that connects to Salesforce for reading and updating data What is the appropriate authentication solution?

Options:

A.

Create a mobile Integration user ID whose credentialsare stored within the mobile application code.

B.

Prompt for the mobile user's username and Password; utilize the oAuth Username-Password flow to obtain an oAuth token.

C.

Redirect to Salesforce via the User-agent oAuth flow to obtain an access token and refresh token.

D.

Prompt for the mobile user's username and password; utilize the Enterprise WSDL login() operation to obtain a session ID.

Buy Now
Questions 6

Universal Containers is replacing a home-grown CRM system. Currently, a .Net application runs a batch process to query the CRM system nightly and create a CSV file that is picked up via SFTP and loaded to a SQL database. What technology should an architect use to minimize custom development when replacing the CRM system with Salesforce?

Options:

A.

Outbound messaging

B.

APEX Batch

C.

APEX Callout

D.

Middleware

Buy Now
Questions 7

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?

Options:

A.

Use an outbound Message with the record's data.

B.

Use lightning connect to save the data to an external object.

C.

Use an Apex class to perform the REST callout asynchronously.

D.

use the REST API with the content-Type headerset to "JSON."

Buy Now
Questions 8

Universal Containers has a SOAP-based 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 a green-screen ERP that must be takenoffline to produce nightly production reports, such as the inventory availability report used for this integration. The integration is performing very slowly and does not complete within the allocated four-hour time slot. What three recommendations might aTechnical Architect make to resolve this issue? Choose 3 answers

Options:

A.

Use outbound Messaging to notify Salesforce promptly when product availability changes in the source system.

B.

Store the Salesforce Product ID in the source system to eliminate the needfor External IDs and UPSERT API calls.

C.

Pre-process the data to avoid the need for workflow rules or triggers

D.

Use the Bulk API UPDATE or UPSERT records more efficiently.

E.

Contact Salesforce support to request that they turn off record locking on theProduct2 object.

Buy Now
Questions 9

As part of their customer setup process. Universal containers requires that any address put into Salesforce be validated by the US Postal Service. The customer must provide their address while they are on the phone with the Universal Containers representative. What two solutions should a Technical Architect recommend to fulfill this requirement? Choose 2 answers

Options:

A.

Implement a VisualForce page that validates entered addresses against an API.

B.

Write a trigger with an @future callout that validates addresses against an API.

C.

Build a custom Address object and a trigger that will validate the address against the object.

D.

Leverage an Appexchange application to validate addresses entered.

Buy Now
Questions 10

Universal Containers would like to display data from an external system inside of Salesforce, and has chosen not to enable lightning Experience. They do not need the data for any other purposes within Salesforce. Which approach should an Integration Architect recommend that matches the Salesforce UI? Choose 2 answers

Options:

A.

An iFrame embedding a custom .Net application that displays data from the other systems.

B.

Acustom visualforce page with a controller thats calls-out to the other systems.

C.

A custom Visualforce page with client- side calls out to the other systems.

D.

A middleware orchestration to continuously persist data from other systems into Salesforce.

Buy Now
Questions 11

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 emailshortly 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?

Options:

A.

Write a nightly batch synchronization to send customer information to the external database.

B.

Write an outbound message to send customer Information to an ESB.

C.

Write an outbound message to send customer Information to the external database.

D.

Write a trigger with an @future method to send customer Information to the external database

Buy Now
Questions 12

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

Options:

A.

Write a custom Apex web service, Which will be called from the marketing system to retrieve customer data.

B.

Use Apex callout to send customer data from Salesforce to the marketing system

C.

Use a middleware tool to pull customer data from Salesforce and push it to the marketing system on adaily basis.

D.

Builda custom java application using the Enterprise WSDL to pull data from Salesforce and push it to the marketing system.

E.

Use outbound messages to send customer data from Salesforce to the marketing system.

Buy Now
Questions 13

Which two options should be considered to permit automatic retry of failed updates when loading data into Salesforce? Choose 2 answers

Options:

A.

Bulk API with serial option.

B.

Standard API with parallel option.

C.

Bulk API with paralleloption.

D.

Standard API with serial option.

Buy Now
Questions 14

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?

Options:

A.

Remote Invocation initiated by Middleware

B.

@Future method with an Apex callout.

C.

Nightly batch validating records modified the previous day.

D.

Outbound Message with a Callback.

Buy Now
Questions 15

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?

Options:

A.

Leverage the REST API to receive orders from the ERP system as they are created.

B.

Leverage Salesforce Lightning Connect to display order information in Salesforce.

C.

write an outboundmessage to receive orders from ERP system as they are created.

D.

Build a scheduled ETL job to sync all customer order history in the orders object.

Buy Now
Questions 16

Universal Containers has built an integration using theSOAP 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?

Options:

A.

Too many concurrent sessions

B.

Reaching an API call limit.

C.

Reaching a logins per Day limit.

D.

Too many record-lock errors

Buy Now
Questions 17

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?

Options:

A.

Use oAuth to authorize the portal to access the chatter API on behalf of the user.

B.

Use oAuth Which will pass their portal credentials to the chatter API.

C.

Use a chatter API integrationuser which authenticates to salesforce using oAuth.

D.

Use a chatter API integration user which authenticatesto Salesforce using Enterprise WSDL login().

Buy Now
Questions 18

What are the two considerations of Apex REST services that anintegration architect should keep in mind when building custom integrations? Choose 2 answers

Options:

A.

They cannot utilize publisher actions.

B.

They require unit and functional testing

C.

They cannot be built or maintained declaratively

D.

They consume more APIlimits than SOAP or REST API

Buy Now
Questions 19

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?

Options:

A.

VPN

B.

Two-way SSL

C.

Profile Security

D.

IP Whitelisting

Buy Now
Questions 20

Which two approaches should anIntegration Architect recommend to allow access to on-premise systems by Salesforce? Choose 2 answers

Options:

A.

Place the systems in aDMZ.

B.

Whitelist Salesforce IPs on the firewall.

C.

Utilize two-way(mutual) SSL

D.

Whitelist the corporate IPS in Salesforce.

Buy Now
Questions 21

Universal containers merges with planetary shipping both companies use Salesforce for order processing and they decide to consolidate for processes. universal containers has well-established channels for receiving orders, so they decide to use Universal containers org for receiving and pre-processing of orders and Planetary Shipping's org for processing and fulfillment of orders. What is the best way to integrate the business processes of the companies?

Options:

A.

Use Apex callout to push orders from universal Containers to Planetary Shipping

B.

Use salesforce-to-Salesforce integration between Universal containers and Planetary shipping

C.

Use Outbound messages to send orders from Universal Containers to Planetary shipping.

D.

Use a Middleware tool to pull orders from Universal Containers and push to Planetary Shipping.

Buy Now
Questions 22

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

Options:

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.

Buy Now
Questions 23

Universal Containers is building anative mobile application that queries and updates data in their Salesforce in real time. What statement is correct about the Salesforce APIs?

Options:

A.

Enterprise WSDL minimizes payload size.

B.

Rest API supports oAuth

C.

Enterprise WSDL supports WS-Security

D.

REST API supports WS-Security.

Buy Now
Questions 24

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

Options:

A.

Out-of-order delivery.

B.

Duplicate messages

C.

Orphaned Requests

D.

Exceeding Governor Limits.

Buy Now
Questions 25

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

Options:

A.

SOAP callouts consume API limits.

B.

WSDL2Apex supports RPC-style SOAP callouts.

C.

WSDL2Apex can be used to generate stub code.

D.

SOAP callouts cannot occur after any DML statements.

Buy Now
Exam Name: Salesforce Certified Mobile Solutions Architecture Designer(SP23)
Last Update: Apr 28, 2024
Questions: 85
Mobile-Solutions-Architecture-Designer pdf

Mobile-Solutions-Architecture-Designer PDF

$28  $80
Mobile-Solutions-Architecture-Designer Engine

Mobile-Solutions-Architecture-Designer Testing Engine

$33.25  $95
Mobile-Solutions-Architecture-Designer PDF + Engine

Mobile-Solutions-Architecture-Designer PDF + Testing Engine

$45.5  $130