Practice Examples and Dumps & Tips for 2021 Latest Data-Architecture-And-Management-Designer Valid Tests Dumps [Q26-Q43]

Share

Practice Examples and Dumps & Tips for 2021 Latest Data-Architecture-And-Management-Designer Valid Tests Dumps

Latest [Nov 22, 2021] 100% Passing Guarantee - Brilliant Data-Architecture-And-Management-Designer Exam Questions PDF


Who should take the Data-Architecture-And-Management-Designer exam

Salesforce Certified Data Architecture and Management Designer certification is an internationally-recognized validation that identifies persons who earn it as possessing skilled as a Salesforce Certified Data Architecture and Management Designer. If a candidate wants significant improvement in career growth needs enhanced knowledge, skills, and talents. The Salesforce Data-Architecture-And-Management-Designer Exam provides proof of this advanced knowledge and skill. If a candidate has knowledge of associated technologies and skills that are required to pass the Salesforce Data-Architecture-And-Management-Designer Exam then he should take this exam.

 

NEW QUESTION 26
Universal Containers (UC) is in the process of selling half of its company. As part of this split, UC's main Salesforce org will be divided into two orgs: Org A and Org
B. UC has delivered these requirements to its data architect:
1. The data model for Org B will drastically change with different objects, fields, and picklist values.
2. Three million records will need to be migrated from Org A to Org B for compliance reasons.
3. The migration will need occur within the next two months, prior to the spilt.
Which migration strategy should a data architect use to successfully migrate the data?

  • A. Use Data Loader for export and Data Import Wizard for import.
  • B. Write a script to use the Bulk API.
  • C. Use an ETL tool to orchestrate the migration.
  • D. Use the Salesforce CLI to query, export, and import.

Answer: D

 

NEW QUESTION 27
Universal Containers (UC) has an Application custom object, which has tens of millions of records created in the past 5 years. UC needs the last 5 years of data to exist in Salesforce at all times for reporting and queries.
UC is currently encountering performance issues when reporting and running queries on this Object using date ranges as filters. Which two options can be used to improve report performance?

  • A. Add custom indexes to the Date fields used for filtering the report.
  • B. Ask support to create a skinny table for Application with the necessary reporting fields.
  • C. Add custom indexes to all fields on Application without a standard index.
  • D. Run multiple reports to get different pieces of the data and combine them.

Answer: A,B

 

NEW QUESTION 28
Universal Containers (UC) recently migrated 1 billion customer related records from a legacy datastore to Heroku Postgres. A subnet of the data needs to be synchronized with Salesforce so that service agents are able to support customers directly within the service console. The remaining non-synchronized set of data will need to be accessed by Salesforce at any point in time, but UC management is concerned about storage limitations.
What should a data architect recommend to meet these requirements with minimal effort?

  • A. Virtualize the remaining set of data with Salesforce Connect and external objects
  • B. As needed, make callouts into Heroku Postgres and persist the data in Salesforce
  • C. Migrate the data to big objects and leverage Async SOQL with custom objects
  • D. Use Heroku Connect to bidirectionally sync all data between systems

Answer: D

Explanation:
Explanation/Reference: https://www.heroku.com/connect

 

NEW QUESTION 29
What is an advantage of using Custom metadata type over Custom setting?

  • A. Custom metadata types are available for reporting.
  • B. Custom metadata records are editable in Apex.
  • C. Custom metadata records are not copied from production to sandbox.
  • D. Custom metadata records are deployable using packages.

Answer: D

 

NEW QUESTION 30
The invoicing system at Universal Containers requires that attachments associated with the Invoice _c custom object be classified by Types (i.e., "Receipt," "Invoice PDF," etc.) so that reporting can be done on invoices showing the number of attachments grouped by Type.
What approach should be taken to categorize the attachments to meet these requirements?

  • A. Add additional options to the standard ContentType picklist field for the Attachment object.
  • B. Create a custom object related to the Invoice object with a picklist field for the Type.
  • C. Add a ContentType picklist field to the Attachment layout and create additional picklist options.
  • D. Create a custom picklist field for the Type on the standard Attachment object with the values.

Answer: B

 

NEW QUESTION 31
NTO has a loyalty program to reward repeat customers. The following conditions exists:
1. Reward levels are earned based on the amount spent during the previous 12 months.
2. The program will track every item a customer has bought and grant them points for discount.
3. The program generates 100 million records each month.
NTO customer support would like to see a summary of a customer's recent transaction and reward level(s) they have attained.
Which solution should the data architect use to provide the information within the salesforce for the customer support agents?

  • A. Create a custom object in salesforce to capture and store all reward program. Populate nightly from the point-of-scale system, and present on the customer record.
  • B. Create a custom big object to capture the reward program data and display it on the contact record and update nightly from the point-of-scale system.
  • C. Provide a button so that the agent can quickly open the point of sales system displaying the customer history.
  • D. Capture the reward program data in an external data store and present the 12 months trailing summary in salesforce using salesforce connect and then external object.

Answer: B

 

NEW QUESTION 32
DreamHouse Realty has 15 million records in the Order_c custom object. When running a bulk query, the query times out.
What should be considered to address this issue?

  • A. Tooling API
  • B. Streaming API
  • C. PK Chunking
  • D. Metadata API

Answer: C

 

NEW QUESTION 33
A custom pricing engine for a Salesforce customer has to be decided by factors with the following hierarchy:
State in which the customer is located
City in which the customer is located if available
Zip code In which the customer is located if available
Changes to this information should have minimum code changes
What should a data architect recommend to maintain this information for the custom pricing engine that is to be built in Salesforce?

  • A. Create a custom object to maintain the pricing criteria.
  • B. Maintain require pricing criteria in custom metadata types.
  • C. Configure the pricing criteria in price books.
  • D. Assign the pricing criteria within customer pricing engine.

Answer: B

 

NEW QUESTION 34
Cloud Kicks currently has a Public Read/Write sharing model for the company's Contacts. Cloud Kicks management team requests that only the owner of a contact record be allowed to delete that contact.
What should an Architect do to meet these requirements?

  • A. Check if the current user is NOT the owner by creating a "before delete" trigger.
  • B. Set the Sharing settings as Public Read Only for the Contact object.
  • C. Set the profile of the users to remove delete permission from the Contact object.
  • D. Check if the current user is NOT the owner by creating a validation rule on the Contact object.

Answer: A

 

NEW QUESTION 35
The leadership team at Get Cloudy Consulting has identified a total of ten text fields on the Contact object as critical. The team wants to capture any changes made to these fields, including the following:
* who made the change
* when they made the change
* what is the old value
* what is the new value
Get Cloudy Consulting needs to be able to report on these field data changes within Salesforce for the past 3 months.
Which two approaches will meet this requirement? (Choose two.)

  • A. Create a workflow to evaluate the rule when a record is created and use field update actions to store previous values for these ten fields in ten new fields.
  • B. Turn on field Contact object history tracking for these ten fields, then create reports on contact history.
  • C. Create a Contact report including these ten fields and Salesforce Id, then schedule the report to run once a day and send email to the admin.
  • D. Write an Apex trigger on Contact after insert event and after update events and store the old values in another custom object.

Answer: B,D

 

NEW QUESTION 36
Universal Containers (UC) is implementing a formal, cross -business -unit data governance program As part of the program, UC will implement a team to make decisions on enterprise -wide data governance. Which two roles are appropriate as members of this team? Choose 2 answers

  • A. Data Domain Stewards
  • B. Operational Data Users
  • C. Analytics/BI Owners
  • D. Salesforce Administrators

Answer: A,C

 

NEW QUESTION 37
NTO uses salesforce to manage relationships and track sales opportunities. It has 10 million customers and 100 million opportunities. The CEO has been complaining 10 minutes to run and sometimes failed to load, throwing a time out error.
Which 3 options should help improve the dashboard performance?
Choose 3 answers:

  • A. Use selective queries to reduce the amount of data being returned.
  • B. Remove widgets from the dashboard to reduce the number of graphics loaded.
  • C. Run the dashboard for CEO and send it via email.
  • D. De-normalize the data by reducing the number of joins.
  • E. Reduce the amount of data queried by archiving unused opportunity records.

Answer: A,D,E

 

NEW QUESTION 38
A health care provider wishes to use salesforce to track patient care. The following actions are in Salesforce
1. Payment Providers: Orgas who pay for the care 2 patients.
2. Doctors: They provide care plan for patients and need to support multiple patients, they are provided access to patient information.
3. Patients: They are individuals who need care.
A data architect needs to map the actor to Sf objects. What should be the optimal selection by the data architect?

  • A. Patients as Accounts, Payment providers as Accounts, & Doctors as Person Accounts
  • B. Patients as Person Accounts, Payment providers as Accounts, & Doctors as Person Account
  • C. Patients as Contacts, Payment providers as Accounts, & Doctors as Accounts
  • D. Patients as Person Accounts, Payment providers as Accounts, & Doctors as Contacts

Answer: B

 

NEW QUESTION 39
Universal Containers (UC) is in the process of migrating lagacy inventory data from an enterprise resources planning (ERP) system into Sales Cloud with the following requirements:
Legacy inventory data will be stored in a custom child objects called Inventory_c.
Inventory data should be related to the standard Account object.
The Inventory_c object should Inhent the same sharing rules as the Account object.
Anytime an Account record is deleted in Salesforce, the related Inventory_c record(s) should be deleted as well.
What type of relationship field should a data architect recommend in this scenario?

  • A. Master-detail relationship filed on Account, related to Inventory_c
  • B. Indirect lookup relationship field on Account, related to Inventory_c
  • C. Lookup relationship fields on Inventory related to Account
  • D. Master-detail relationship filed on Inventory_c, related to Account

Answer: A

 

NEW QUESTION 40
Northern Trail Outfitters (NTO) has multiple systems across its enterprise landscape, including Salesforce, with disparate versions of the customer record. In Salesforce, the customer is represented by the Contact object.
NTO utilizes a master data management (MDM) solution with these attributes:
1. The MDM solution keeps track of the Customer Master with a Master Key.
2. The Master Key is a map to the record IDs from each external system that customer data is stored within.
3. The MDM solution provides deduplication features, so it acts as the Single Source of Truth.
How should a Data Architect implement the storage of the Master Key within Salesforce?

  • A. Сreate a custom object to store the Master Key with a lookup field to Contact
  • B. Create an external object to store the Master Key with a lookup field to Contact
  • C. Store the Master Key in Heroku Postgres and use Heroku Connect for synchronization
  • D. Store the Master Key on the Contact object as an External ID field for referential integrity

Answer: C

 

NEW QUESTION 41
Every year, Ursa Major Solar has more than 1 million orders. Each order contains an average of 10 line items. The Chief Executive Officer (CEO) needs the Sales Reps to see how much money each customer generates year-over-year. However, data storage is running low in Salesforce.
Which approach for data archiving is appropriate for this scenario?

  • A. 1. Annually export and delete order line items. 2. Store them in a zip file in case the data is needed later.
  • B. 1. Annually delete orders and order line items. 2. Ensure the customer has order information in another system.
  • C. 1. Annually export and delete orders and order line items. 2. Store them in a zip file in case the data is needed later.
  • D. 1. Annually aggregate order amount data to store in a custom object. 2. Delete those orders and order line items.

Answer: D

 

NEW QUESTION 42
Ursa Major Solar has the following two systems:
- Salesforce
- On-premise ERP system
Opportunity records need to be copied to the ERP once they reach a Closed/Won Stage. The Opportunity record in the ERP system will be read-only for all fields copied in from Salesforce.
An Architect needs to recommend a real-time approach that fulfills these requirements.
Which recommendation is appropriate?

  • A. Create a workflow rule with Outbound Messaging that sends Opportunity data.
  • B. Have an ERP poll Salesforce nightly and bring in the desired Opportunities.
  • C. Implement a Master Data Management system to determine system of record.
  • D. Implement an hourly integration to send Salesforce Opportunities to the ERP system.

Answer: A

 

NEW QUESTION 43
......

Data-Architecture-And-Management-Designer are Available for Instant Access: https://www.pass4sures.top/Salesforce-Application-Architect/Data-Architecture-And-Management-Designer-testking-braindumps.html

Data-Architecture-And-Management-Designer Certification – Valid Exam Dumps Questions Study Guide: https://drive.google.com/open?id=1rvI6HJAo_S7PDhSxDsG52f7U441BJYme