Halloween Special Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Question # 4

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.

Error Handling

C.

Bulkification

D.

Orchestration

E.

Logging

Full Access
Question # 5

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

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.

Full Access
Question # 6

Universal Containers has a batch integration that runs every five minutes toload 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.

Error reporting is not enabledin Salesforce.

B.

The integration takes more than five minutes to run.

C.

The integration is causing UC to exceedits API limits

D.

The Integration cannot find the parent orders for some Shipments.

Full Access
Question # 7

Universal Containers(UC) has a legacy application that tracks customer order status once theorder 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.

Full Access
Question # 8

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

A.

Encrypt the Payload with a shared key.

B.

Use a pre-shared key in a query parameter.

C.

Implement two way (or mutual) SSL certificates.

D.

Utilize CA - signed certificates on the host.

Full Access
Question # 9

An insurance company decides to build an online portalusing 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.

Middleware tool to pull quote requests from SF and push to the legacy system.

B.

Trigger with an @Future method to send quoterequests to the legacy system.

C.

Outbound message to send quote requests from Salesforce to the legacy system.

D.

Apex callout to send quote requests from Salesforce to the legacy System.

Full Access
Question # 10

Universal containers built an integrationusing 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.

Possibilityof hitting the daily limit for number of batches.

B.

possibility of very long bulk job execution times

C.

Possibility of failures due to record-locking errors.

D.

Possibility of hitting the "Too many concurrent batches" limit.

Full Access
Question # 11

Universal containers has a simple co -premise web app that is unauthenticated. What capability should an integration Architect recommend to make the app accessible from within Salesforce?

A.

Apex callout

B.

Visualforce

C.

Custom Web tab

D.

Lightning connect

Full Access
Question # 12

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

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

Full Access
Question # 13

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.

Out-of-order delivery.

B.

Duplicate messages

C.

Orphaned Requests

D.

Exceeding Governor Limits.

Full Access
Question # 14

Universal Containers would like to integrate to an external system from Salesforceover a secure channel however the external system does not support HTTP-basic authentication. What approach should an integration Architect recommend that enables the external system to trust the data being received?

A.

Digitally sign the Payload using aprivate key trusted by the external system.

B.

Include a secret passphrase in the payload that is a validated by the external system.

C.

Base64 encode the data to ensure untrusted 3rd parties don't see it.

D.

Utilize a 3rd-party SSO solution to authenticate the session.

Full Access
Question # 15

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.

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.

Createa 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.

Full Access
Question # 16

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.

Visualforce

B.

Custom Web Tab

C.

Canvas

D.

Lightning Component

Full Access
Question # 17

What are two reasons an existing custom field cannot be marked as External ID? Choose 2 answers

A.

Maximum number of External IDs allowed on an objecthas been reached,

B.

Maximum number of fields of an object has been reached.

C.

Maximum number of skinny tables has been reached.

D.

Maximum number of indexes allowed on an object has been reached.

Full Access
Question # 18

What are two scenarios that utilize the chatter REST API? Choose 2 answers

A.

When integrating chatter into custom mobile apps.

B.

When migrating Opportunity data.

C.

When uploading large files.

D.

When posting status updates to social media.

Full Access
Question # 19

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.

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.

Full Access
Question # 20

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 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.

Full Access
Question # 21

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 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().

Full Access
Question # 22

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?

A.

Too many concurrent sessions

B.

Reaching an API call limit.

C.

Reaching a logins per Day limit.

D.

Too many record-lock errors

Full Access
Question # 23

Universal Containers has decided that acquisition of other companies will be akey 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 customerservice 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.

Use custom Linksto direct users to the appropriate ERP system to vieworder status.

B.

Build all Integrations as nightly ETL batches to minimize real-time overhead.

C.

Leverage Apex callouts to integrate directly with acquired applications.

D.

Use an ESB to abstract the Salesforce integration from other enterprise applications.

Full Access
Question # 24

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.

Migrate the integration to the Bulk API 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.

Utilize workflow outbound messaging which does not count towards the API limits.

Full Access