Courseiva

Salesforce Certified Data Cloud Consultant (Data 360 Consultant) (Data 360 Consultant) (Data 360 Consultant) — Questions 226300

521 questions total · 7pages · All types, answers revealed

Page 3

Page 4 of 7

Page 5
226
Multi-Selectmedium

A Data Cloud Consultant is building segments and notices that certain customer attributes are missing from the Segmentation Canvas. Which THREE reasons could explain why an attribute is unavailable for segmentation? (Choose three.)

Select 4 answers
A.The attribute is stored as a raw unharmonized DLO field without DMO mapping.
B.The relationship cardinality between the base object and the related object is improperly configured.
C.The attribute is not mapped to an Activation-enabled Data Model Object.
D.The user is logged into Sales Cloud instead of Marketing Cloud.
E.The attribute is excluded from segmentation or marked as non-filterable during DMO configuration.
AnswersA, B, C, E

Unmapped DLO fields cannot be directly used in the Segmentation Canvas.

Why this answer

Attributes may be unavailable for segmentation if they are not marked as filterable/segmentable, not mapped to an activation-enabled DMO, or if the relationship path between objects is invalid.

227
Multi-Selectmedium

Which THREE attributes can be leveraged in fuzzy matching rules within Salesforce Data Cloud Identity Resolution? Choose 3 options.

Select 3 answers
A.Customer Name (First and Last Name)
B.Activation Target ID
C.Email Address
D.Calculated Insight KPI Value
E.Postal Address / Street
AnswersA, C, E

Fuzzy Name matching is standard for customer names.

Why this answer

Fuzzy matching rules support attributes such as name, email, and address/postal details.

228
MCQmedium

A support manager using Service Cloud wants agents to view a customer's real-time calculated lifetime value directly on the Case page layout. Which Data Cloud feature should the consultant leverage to display this insight in Service Cloud?

A.Batch CSV exports attached to the Account record
B.Marketing Cloud Engagement Data Extensions
C.Tableau Pulse embedded dashboards only
D.Calculated Insights exposed via Lightning Web Components or related lists
AnswerD

Calculated Insights can be brought into Salesforce CRM using standard components or custom LWCs on record pages.

Why this answer

Data Cloud related lists or Lightning Web Components powered by Data Cloud can expose Calculated Insights directly within Sales and Service Cloud console views.

229
MCQhard

A consultant is configuring a data stream from Amazon S3. The source CSV files contain headers with spaces and special characters. When mapping these fields in Data Cloud, how does Data Cloud handle field names derived from CSV headers?

A.Data Cloud automatically sanitizes headers into valid field names, and consultants map them in the mapping canvas.
B.Consultants must manually rename every column in the S3 CSV file before every batch run.
C.Special characters are converted into Apex escape sequences.
D.Ingestion fails immediately if headers contain spaces or special characters.
AnswerA

Data Cloud normalizes header names during ingestion, and consultants map them during the mapping step.

Why this answer

Data Cloud automatically sanitizes CSV headers during ingestion to create valid API field names (removing spaces and special characters), while allowing consultants to map them cleanly.

230
MCQmedium

A Data Cloud consultant is configuring a ruleset and needs to ensure that Salesforce CRM records take precedence over Marketing Cloud records when populating unified profile attributes. Which reconciliation strategy should be implemented?

A.Highest Frequency
B.Most Recent
C.Source Sequence
D.Most Complete
AnswerC

Source Sequence lets you explicitly rank data sources in order of priority (e.g., Salesforce CRM first, Marketing Cloud second).

Why this answer

Source Sequence allows administrators to define a prioritized list of data sources so that fields are populated based on a specific source hierarchy.

231
MCQmedium

A consultant needs to ingest data from an SFTP server into Data Cloud. How should this be architected if Data Cloud does not have a direct native SFTP batch connector?

A.Configure the Salesforce CRM connector to read the SFTP files directly.
B.Stage the files from SFTP into a supported cloud storage provider (e.g., Amazon S3) and ingest via a batch data stream.
C.Use manual CSV uploads via Data Explorer every hour.
D.Write a custom Apex trigger on the SFTP server to push records directly to Data Source Objects.
AnswerB

Staging files in S3 or GCS allows batch data streams to ingest files from non-native direct endpoints.

Why this answer

When direct native connectors like SFTP are not available, data is typically staged in a supported cloud storage provider (like Amazon S3 or Google Cloud Storage) using an automated ETL tool or middleware like MuleSoft, and then ingested via a batch data stream.

232
MCQeasy

Which user interface in Salesforce is used by administrators to monitor the health, status, and row counts of data streams in Data Cloud?

A.Data Cloud Setup > Data Streams
B.Salesforce Optimizer
C.Data Cloud Setup > Monitoring > System Overview
D.Setup > Environments > Data Cloud Health Check
AnswerA

The Data Streams tab in Data Cloud Setup shows real-time ingestion metrics, status, and error logs for all configured streams.

Why this answer

Data Cloud Setup provides the Data Streams tab where administrators can monitor ingestion status, record counts, and errors.

233
MCQmedium

A Data Cloud Consultant needs to create a segment of customers who have made a purchase in the last 30 days and have an active subscription. However, the purchase data updates in real time via streaming ingestion, while the subscription data is batch-loaded nightly. Which segment type and refresh strategy should the consultant configure?

A.Create two separate segments (one streaming for purchases and one batch for subscriptions) and combine them using a segment container union.
B.Use a Calculated Insight to merge the two datasets before building a streaming segment.
C.Configure a streaming segment with a 1-hour refresh interval to capture the nightly batch updates.
D.Configure a batch segment with a scheduled daily refresh to evaluate both streaming and batch data sources simultaneously.
AnswerD

Batch segments process data on a scheduled basis, ensuring that nightly batch updates and historical streaming data are fully reconciled and evaluated together.

Why this answer

Streaming segments evaluate criteria as streaming data arrives, but they rely on streaming-enabled DMOs. To combine streaming purchase data and batch subscription data effectively for frequent evaluation, a batch segment with a scheduled refresh is typically used, or a streaming segment if all source DMOs support streaming. In Data Cloud, mixing streaming and batch requires understanding that segment publication schedules apply to the segment definition.

However, if real-time evaluation against a streaming source is needed, a streaming segment is appropriate. For mixed batch and streaming, a batch segment scheduled hourly or daily is the most robust way to ensure all batch-loaded subscription attributes are fully processed.

234
Multi-Selecthard

Which THREE of the following best practices should a consultant follow when building Calculated Insights to ensure optimal performance? (Choose three.)

Select 3 answers
A.Test and validate the SQL query logic using smaller datasets before scheduling full CI runs.
B.Embed REST API callouts inside the CI SQL to fetch external enrichment data.
C.Always include the Individual or Profile dimension if the CI is intended for segmentation.
D.Include only necessary dimensions and measures to avoid unnecessary data explosion.
E.Write queries against raw DLO files instead of normalized DMOs for faster execution.
AnswersA, C, D

Validating syntax and logic ensures successful publication without wasting processing resources.

Why this answer

Calculated Insight performance depends on efficient SQL writing, proper selection of dimensions, avoiding overly complex nested subqueries where possible, and leveraging appropriate DMO relationships.

235
MCQmedium

A consultant is configuring a data stream from an Amazon S3 bucket. The source files are updated continuously throughout the day. How should the refresh schedule be configured to capture these updates efficiently?

A.Use the Salesforce CRM connector to pull files from S3.
B.Configure an Apex trigger in S3 to push files instantly via SOAP.
C.Configure a scheduled batch refresh (e.g., hourly) to match the frequency of file drops in S3.
D.Manually upload the files every morning using Data Explorer.
AnswerC

Scheduled batch frequencies ensure new files in S3 are ingested regularly.

Why this answer

Batch data streams from cloud storage can be scheduled to run at specific frequencies (e.g., hourly, every 2 hours, or daily) depending on how often new files are dropped into the bucket.

236
MCQmedium

A consultant has created a custom Data Model Object and mapped several fields. The client now requests to delete one of the mapped fields from the custom DMO. What prerequisite must the consultant perform before deleting the field?

A.Export all historical data to Amazon S3 as a backup.
B.Restart the Kafka broker cluster.
C.Remove all field mappings, Calculated Insights, and segment filters referencing that field.
D.Deactivate the entire Data Cloud instance for 24 hours.
AnswerC

Dependent mappings and references must be removed before a field can be deleted from a DMO.

Why this answer

Before deleting a field from a DMO, any dependencies such as field mappings from DSOs, Calculated Insights, or Segment filters referencing that field must be removed.

237
MCQeasy

A consultant needs to schedule a batch segment to refresh every Monday at 6:00 AM. Where is this schedule configured?

A.Activation Target Publish Schedule
B.Identity Resolution Job Schedule
C.Segment Refresh Schedule
D.Data Stream Ingestion Schedule
AnswerC

The segment refresh schedule setting controls how often a batch segment re-evaluates its criteria.

Why this answer

Batch segments are configured with a refresh schedule directly within the Segment definition interface in Data Cloud.

238
MCQhard

A Data Cloud Consultant is reviewing storage consumption. They notice that the Identity Resolution ruleset has created a large number of Unified Individuals from disparate source records. Which component consumes the primary processing capacity during identity resolution runs?

A.Data Stream ingestion frequency settings
B.Calculated Insights aggregation queries
C.Activation publishing jobs to external endpoints
D.Identity Resolution ruleset execution (match and reconciliation rules)
AnswerD

Running match and reconciliation rules to resolve profiles is the core compute-heavy task in Identity Resolution.

Why this answer

Identity Resolution executes match rules and reconciliation rules to combine multiple individual records into a single unified profile, which is a resource-intensive batch process.

239
MCQeasy

Which component of Salesforce Data Cloud is responsible for organizing ingested raw data into a standardized structure based on the Cloud Information Model (CIM)?

A.Activation Targets
B.Data Model Objects (DMOs)
C.Calculated Insights
D.Data Source Objects (DSOs)
AnswerB

DMOs represent the harmonized data mapped to the Cloud Information Model (CIM).

Why this answer

Data Model Objects (DMOs) and the Data Mapping canvas are used to map raw Data Source Objects (DSOs) into the standardized Cloud Information Model (CIM).

240
MCQmedium

An administrator is setting up a data stream from a Salesforce CRM org. They want to ensure that only specific objects (Account, Contact, Case) are ingested. Where is this filtering or selection performed?

A.In Marketing Cloud Connect settings
B.In Salesforce CRM Setup under Connected Apps
C.In the Identity Resolution ruleset configuration
D.In the Salesforce CRM Data Stream creation wizard object selection step
AnswerD

Object selection happens directly in the data stream setup wizard.

Why this answer

During the creation wizard of a Salesforce CRM data stream, administrators select the specific objects and fields they wish to include.

241
MCQeasy

A Data Cloud Consultant is reviewing the architecture of a new implementation. The client asks which Salesforce edition is strictly required to provision Salesforce Data Cloud. What should the consultant explain?

A.Data Cloud requires a standalone platform with no connection to Salesforce CRM editions.
B.Data Cloud is available as an add-on license that can be provisioned on supported Salesforce Enterprise or Unlimited editions.
C.Data Cloud is only available on Developer Edition for testing.
D.Data Cloud is included automatically in all Professional Edition orgs without extra cost.
AnswerB

Data Cloud requires specific CRM editions (such as Enterprise, Unlimited, or Performance) along with the Data Cloud add-on license.

Why this answer

Data Cloud requires specific enterprise-level or higher Salesforce editions and licensing, typically built on the Enterprise, Unlimited, or Performance editions of Salesforce CRM.

242
MCQmedium

A consultant is configuring a Marketing Cloud Connector for Data Cloud. The client wants to ensure that specific synchronized data extensions are available for segmentation in Data Cloud. What is the mandatory prerequisite to enable this integration?

A.Provision the Data Cloud for Marketing SKU
B.Create an API User in Marketing Cloud
C.Configure a Data Space for Marketing
D.Enable Marketing Cloud Connect in Sales Cloud
AnswerA

A valid SKU is required to enable the connector functionality.

Why this answer

The Marketing Cloud connector requires the 'Data Cloud for Marketing' SKU and the appropriate user permissions to establish the connection before data streams can be configured.

243
Multi-Selecthard

A consultant is designing a data model in Salesforce Data Cloud and needs to establish relationships between custom Data Model Objects (DMOs). Which TWO rules apply when creating relationships between DMOs in Data Cloud?

Select 2 answers
A.Relationships can be established as Many-to-One (N:1) or One-to-One (1:1).
B.Standard DMOs cannot participate in relationships with custom DMOs.
C.Relationships between DMOs can only be established using SQL queries in Calculated Insights.
D.Many-to-Many (N:N) relationships can be created directly between any two DMOs without a junction object.
E.The foreign key in the child object must match the data type of the primary key in the parent object.
AnswersA, E

Data Cloud supports N:1 and 1:1 relationships between DMOs.

Why this answer

When creating relationships in Data Cloud, relationships can be N:1 or 1:1, and the participating fields must share compatible data types and properties to ensure referential integrity during segmentation and querying.

244
MCQhard

A consultant is troubleshooting a streaming ingestion pipeline where incoming JSON payloads are failing validation. The error message states that a required timestamp field is in an invalid format. What ISO standard format does Data Cloud require for timestamp fields?

A.Unix Epoch timestamp integer (e.g., 1698000000)
B.ISO 8601 format (e.g., YYYY-MM-DDTHH:MM:SS.sssZ)
C.RFC 2822 email date format
D.US Standard format (MM/DD/YYYY HH:MM AM/PM)
AnswerB

ISO 8601 is the mandatory timestamp format for streaming and batch ingestion in Data Cloud.

Why this answer

Data Cloud requires timestamps to be in ISO 8601 format (e.g., YYYY-MM-DDTHH:MM:SS.sssZ) for accurate time-series processing.

245
MCQmedium

A Data Cloud Consultant is asked to set up an activation that targets specific contacts who have abandoned a shopping cart within the last 2 hours. Which activation approach best fits this requirement?

A.Schedule an hourly Calculated Insight batch job.
B.Export daily SFTP files to an external email service provider.
C.Configure a streaming Data Action targeting a webhook that triggers a real-time abandoned cart message.
D.Create a batch segment with a 24-hour refresh schedule activated to Marketing Cloud.
AnswerC

Real-time abandonment scenarios rely on Data Actions listening to streaming events for immediate action.

Why this answer

Shopping cart abandonment within 2 hours requires near real-time responsiveness, which is best achieved using Data Actions and streaming data rather than batch-scheduled segment activations.

246
MCQhard

An administrator has configured a Data Stream from Marketing Cloud Engagement to Data Cloud. The data stream is running successfully, but the fields are not appearing when attempting to map them to the Data Model Objects (DMOs). What is the most likely reason for this issue?

A.Data Model mapping has not yet been completed for the Data Source Object.
B.Calculated Insights must be created first to expose fields.
C.The Data Stream needs to be paused and resumed to refresh metadata cache.
D.The streaming platform requires manual schema publication via API.
AnswerA

Data Model mapping explicitly connects the fields of the underlying Data Source Object (DSO) to the Data Model Objects (DMO).

Why this answer

Before fields from a Data Stream can be mapped to a DMO, the DSE (Data Source Object) must be mapped to the Data Model using the Data Model mapping canvas.

247
MCQmedium

An administrator needs to ingest transactional data from a custom legacy database into Salesforce Data Cloud. The data arrives as raw JSON files placed into an enterprise S3 bucket on an hourly basis. Which connection type should the consultant configure in Data Cloud?

A.Informatica Cloud Data Integration (CDI) Zero Copy
B.Salesforce CRM Connector
C.Cloud File Storage Data Stream
D.Ingestion API via Custom SDK
AnswerC

Cloud File Storage supports connecting to external storage providers like Amazon S3 to ingest batch files such as JSON.

Why this answer

Cloud File Storage integration allows Data Cloud to connect to external S3-compatible buckets and ingest CSV, JSON, or Parquet files on a scheduled batch basis.

248
MCQhard

An organization notices that records are being over-merged in Data Cloud because two different individuals share the same common first name and phone number. Which configuration change should the consultant make to resolve this issue?

A.Delete the Unified Individual DMO and recreate the data space.
B.Increase the timeout threshold for the identity resolution batch job.
C.Switch the reconciliation rule from Most Recent to Source Sequence.
D.Refine the match rules by adding higher-specificity criteria or combining multiple match fields using an AND logic requirement.
AnswerD

Combining criteria with stricter logic prevents broad, incorrect matches caused by common attributes.

Why this answer

Adding a secondary match rule with tighter criteria (such as exact last name and email) or requiring multiple conditions to match simultaneously prevents over-merging.

249
MCQhard

An organization has configured an activation to Marketing Cloud Engagement. Marketing users report that while new profiles are added successfully, profile updates (such as email address changes) are not propagating to the target data extension. What should the consultant investigate?

A.Ensure that the segment uses an append-only publishing policy.
B.Increase the batch size of the Data Stream ingestion job.
C.Check if the Marketing Cloud connector user has View All permissions on the Contact object.
D.Verify that the primary key and upsert behavior on the target Marketing Cloud Data Extension match the activation membership key.
AnswerD

If the primary key or update configuration on the data extension does not support upserts, updates will fail or result in duplicate rows rather than refreshing existing records.

Why this answer

For profile updates to reflect properly in Marketing Cloud Engagement data extensions during activations, the primary key and update behavior (such as upsert keys) on the target data extension must be correctly aligned with the activation primary key.

250
Multi-Selectmedium

A Data Cloud Consultant is designing a batch segment that needs to run daily. Which TWO best practices should the consultant follow to ensure optimal performance and avoid processing timeouts? (Choose two.)

Select 2 answers
A.Use streaming segments exclusively for all segments regardless of size.
B.Limit the number of nested related attribute containers to reduce query complexity.
C.Include all available profile attributes in the segment output to maximize downstream usability.
D.Schedule all segments to run simultaneously at midnight to align with data refreshes.
E.Refine criteria using indexed fields and standard operators where possible.
AnswersB, E

Deeply nested containers increase query complexity and execution time.

Why this answer

Best practices for batch segmentation include avoiding overly complex nested containers and limiting unnecessary attributes.

251
MCQmedium

A consultant is creating a segment that targets individuals who belong to either 'Segment A' or 'Segment B', but explicitly excludes members of 'Segment C'. How should this be constructed on the Segmentation Canvas?

A.Use a single container with 'OR' logic for Segment A and Segment B, and add an Exclusion container for Segment C.
B.Use a Calculated Insight to evaluate the boolean expression of all three segments simultaneously.
C.Use an 'AND' operator between Segment A, Segment B, and Segment C within the same container.
D.Create three separate segments and publish them to a single activation target with priority rules.
AnswerA

Using an OR container for inclusion and a separate Exclusion container correctly handles this logic.

Why this answer

Container logic allows combining multiple segment criteria using AND/OR operators along with exclusion containers.

252
MCQmedium

A consultant is configuring a match rule using Fuzzy Email in Salesforce Data Cloud. Which behavior should the consultant expect when this match rule runs?

A.It normalizes common variations and accounts for minor typographical errors in the email address.
B.It automatically creates a bridge object between the Contact Point Email and Account DMOs.
C.It requires an exact match on both the local part and domain name of the email address.
D.It strips out all domain suffixes and matches solely on the user's first and last name.
AnswerA

Fuzzy email matching normalizes and accounts for minor discrepancies in the email address string.

Why this answer

Fuzzy email matching accounts for minor typos, domain normalization, and standard variations in email addresses before linking records.

253
MCQhard

An administrator has set up an Identity Resolution ruleset in Data Cloud. After running the job, they notice that matching is failing for records where the email address is populated in uppercase in one system and lowercase in another. How should the consultant troubleshoot this?

A.Rewrite the Identity Resolution ruleset to use a fuzzy match rule instead of exact match for email.
B.Ensure data transformation formulas are applied during data stream mapping or normalization to lowercase email addresses prior to matching.
C.Increase the Match Confidence threshold to 100%.
D.Recreate the Data Space to reset the ruleset index.
AnswerB

Applying transformation formulas to standardize string fields like email to lowercase ensures exact match rules successfully evaluate records from mixed-case systems.

Why this answer

Identity Resolution match rules are case-sensitive by default unless standardized or normalized during ingestion/mapping or handled via appropriate match rule definitions.

254
Multi-Selecthard

An administrator is troubleshooting a failing Salesforce CRM data stream. Which THREE diagnostic steps or checks should the administrator perform in Salesforce Data Cloud? (Choose three.)

Select 3 answers
A.Check the core CRM Apex code coverage for all triggers in the organization.
B.Verify that the Salesforce CRM connector bundle was successfully deployed and activated.
C.Check the Data Streams monitor in Data Manager for error logs and failed record counts.
D.Verify that all Data Model Objects have been converted to custom Salesforce objects in Object Manager.
E.Review the Salesforce CRM integration user permissions and connection status.
AnswersB, C, E

Unactivated bundles prevent data streams from initializing or syncing correctly.

Why this answer

Troubleshooting CRM data streams involves checking stream run history, connector status, and data model mappings.

255
MCQmedium

An organization wants to ingest data from Marketing Cloud Engagement into Data Cloud. Which connector should the consultant configure?

A.Heroku Connect Ingestion API
B.Marketing Cloud Engagement Data Bundle
C.Salesforce CRM Bulk API Connector
D.Amazon S3 Batch Connector
AnswerB

The Marketing Cloud Engagement bundle provides native connectors for subscriber and tracking data.

Why this answer

Marketing Cloud Engagement has a dedicated native connector bundle within Data Cloud to ingest subscriber, journey, and tracking data.

256
MCQmedium

An administrator needs to restrict access to a specific Calculated Insight so that only members of the Data Engineering team can view or edit it. How should the administrator accomplish this?

A.Configure permission sets that grant access to calculated insights and assign them exclusively to the Data Engineering team.
B.Assign the users to a custom profile with Read-Only access to Calculated Insights.
C.Set the sharing model for Calculated Insight objects to Private in Sharing Settings.
D.Place the calculated insights into a locked Data Space that blocks all users except administrators.
AnswerA

Access to calculated insights is controlled via permission sets assigned to users.

Why this answer

Calculated insights are secured via Data Cloud permission sets and Data Space assignments. Restricting access involves configuring permission sets and assigning them appropriately.

257
MCQeasy

What role does Identity Resolution play in relation to Data Cloud segmentation?

A.Identity Resolution exports final segment membership lists to external ad platforms.
B.Identity Resolution writes the SQL code for Calculated Insights.
C.Identity Resolution schedules the automatic refresh time for streaming segments.
D.Identity Resolution merges multiple source records into unified profiles, ensuring segments target unique individuals rather than fragmented records.
AnswerD

Unified profiles created by Identity Resolution form the foundational population that segments evaluate.

Why this answer

Identity Resolution ties disparate source records together into a single unified Individual profile, which is what segments evaluate against.

258
MCQeasy

What is the primary purpose of individuation strategies in Salesforce Data Cloud Identity Resolution?

A.To encrypt personally identifiable information (PII) before storage.
B.To schedule automated data exports to AWS S3.
C.To determine how matching records are grouped and consolidated into unique unified profiles.
D.To define segment membership criteria for marketing campaigns.
AnswerC

Individuation governs the rules and algorithms used to unify individual profiles.

Why this answer

Individuation strategies define how source records are grouped and consolidated into unified individual profiles during the resolution process.

259
MCQeasy

Which entity in Data Cloud represents the logical grouping of related data streams from a specific connector instance?

A.Calculated Insight
B.Data Action
C.Activation Target
D.Data Source
AnswerD

A Data Source represents the connected external system or instance.

Why this answer

A Data Source represents the connection to an external system or instance (like a specific Salesforce Org or S3 bucket) from which multiple data streams are created.

260
MCQmedium

A consultant is setting up Segmentation in Data Cloud and wants to include customers who reside in California or New York AND have made a purchase greater than $100. How should the consultant configure this in the Segmentation Canvas?

A.Use Calculated Insight SQL queries exclusively for all segmentation.
B.Write an Apex trigger to evaluate the segment criteria.
C.Use nested container logic (AND/OR containers) on the Segmentation Canvas.
D.Create a separate Data Space for each state.
AnswerC

Nested containers allow mixing AND and OR conditions for precise audience filtering.

Why this answer

The Segmentation Canvas supports complex boolean logic (AND/OR containers) to combine demographic and behavioral criteria.

261
MCQmedium

A consultant is creating a segment in Data Cloud based on unified individuals who have both an active subscription and an open support case. When building the segment, which object should the consultant use as the primary base object?

A.Calculated Insight DLO
B.Activation Target Object
C.Unified Individual DMO
D.Case DLO
AnswerC

The Unified Individual DMO represents the consolidated customer profile and serves as the primary base object for customer segmentation.

Why this answer

Segments in Data Cloud are typically built using the Unified Individual DMO as the primary base object to target unified customer profiles.

262
MCQeasy

What artifact must be associated with an Activation to determine the communication channel (eんに, email address or phone number) used to reach the audience?

A.Data Stream Ingestion Object
B.Calculated Insight Summary Table
C.Identity Resolution Rule Set
D.Contact Point Object
AnswerD

Contact Point objects supply the specific address, email, or phone number required to reach the unified individual.

Why this answer

Contact Point objects (such as Contact Point Email or Contact Point Phone) must be linked and selected during activation setup to provide the necessary communication channels.

263
MCQhard

A consultant is configuring an activation to Meta (Facebook) Ads. The activation fails because matching criteria require hashed email addresses. How should the consultant resolve this?

A.Create a static CSV file and upload it manually via Email Studio.
B.Ensure the activation mapping utilizes supported identifier fields (such as hashed emails) or leverage transformation features required by the destination platform.
C.Delete all Identity Resolution rules so raw unhashed emails are transmitted.
D.Convert the segment into a streaming segment to bypass Meta's validation requirements.
AnswerB

Ad platforms like Meta require specific identifiers (often hashed emails/phones) mapped correctly during activation.

Why this answer

Data Cloud supports transforming or mapping attributes, or utilizing calculated insights/standard activation features to ensure hashed identifiers are supplied to ad platforms like Meta.

264
MCQhard

An administrator notices that a streaming segment is failing to publish updates despite new data flowing into the underlying Data Lake Object. What is the most likely cause?

A.Activation targets must be manually synchronized before streaming segments can calculate.
B.Batch segmentation jobs are currently disabled at the instance level.
C.The profile unification job has not run within the last 24 hours.
D.The segment uses an unsupported attribute relationship or operator for streaming criteria.
AnswerD

Streaming segments have limitations on complex joins and specific operators compared to batch segments.

Why this answer

Streaming segments require the source data stream to have primary keys mapped and streaming enabled, and the segment criteria must adhere to supported streaming operators.

265
MCQmedium

A consultant has mapped multiple Salesforce CRM Account records to the Account DMO. The client notices that records are duplicated because different regional systems created accounts with slightly different names. What tool should be used to consolidate these accounts?

A.Calculated Insights aggregation formulas
B.Data Action publishing targets
C.Identity Resolution rulesets
D.Segment builder canvas
AnswerC

Identity Resolution matches and unifies duplicate records based on configured match rules.

Why this answer

Identity Resolution in Data Cloud provides rulesets with match and reconciliation rules to unify duplicate profile and account records into unified entities.

266
MCQhard

An organization experiences an issue where an activation targeting Marketing Cloud Engagement stops updating data extensions. Upon investigation, the connected app credentials used by the activation target were recently rotated by the security team. What is the correct remediation step?

A.Run a full Identity Resolution rebuild job.
B.Update the Activation Target authentication credentials within Data Cloud setup to reflect the new client secret.
C.Recreate all segments associated with the activation target from scratch.
D.Restart the Data Cloud instance via Salesforce Core Setup.
AnswerB

Rotating credentials externally requires updating the corresponding authentication settings in the Data Cloud Activation Target.

Why this answer

When external credentials or connected app secrets are rotated, the corresponding activation target authentication configuration in Data Cloud must be updated to re-establish trust.

267
MCQmedium

A consultant needs to configure a reconciliation rule where the surviving attribute value on the unified profile is determined by how many times that specific value appears across the contributing source records. Which reconciliation rule fits this requirement?

A.Most Recent
B.Highest Frequency
C.Longest String
D.Source Sequence
AnswerB

Highest Frequency evaluates the occurrence count of each value and picks the most frequent one.

Why this answer

Highest Frequency selects the attribute value that appears with the greatest frequency across the matching source records.

268
MCQhard

A Data Cloud Consultant is building a Calculated Insight using ANSI SQL to calculate the average order value (AOV) per customer. When attempting to save the Calculated Insight, the system throws a validation error regarding the dimensions. What is the most likely cause of this error?

A.The query includes a dimension that is not part of the Profile DMO space or properly related via a foreign key.
B.Calculated Insights only support Standard SQL and do not permit aggregate functions like AVG().
C.The AOV result is stored as a text field instead of a numerical measure.
D.The query references a streaming data model object directly without a time window.
AnswerA

Calculated Insights require valid dimensions linked through the data model graph.

Why this answer

Calculated Insights require dimensions to be mapped correctly using primary and foreign keys from the Data Model, and mixing unaggregated non-measure fields without proper GROUP BY clauses will cause validation failures.

269
MCQhard

An enterprise client requires that all data exported via activation to an ad network be subjected to a final attribute masking rule to obscure sensitive demographics. How can this requirement be met?

A.Write an Apex trigger on the Unified Individual object to intercept and scrub outbound activation payloads.
B.Configure an encryption mask in the Activation Target configuration screen.
C.Create derived attributes or transformed DMO fields upstream before segment activation to ensure sensitive values are obscured or masked prior to export.
D.Enable Salesforce Shield Platform Encryption specifically for activation exports.
AnswerC

Masking and transformation should be done upstream via Data Transforms or calculated fields since activation targets export mapped data as-is.

Why this answer

Data transformations, calculated insights, or masked attribute mappings should be applied upstream or via derived data model fields before activation export, as activation targets export mapped attributes directly.

270
MCQmedium

A consultant is setting up a Salesforce CRM data stream for the Case object. The client wants to filter out closed cases so they are never ingested into Data Cloud. Where should this filter be applied?

A.Write a segment in Data Cloud to exclude closed cases.
B.Apply a filter condition (WHERE clause) during the Salesforce CRM data stream configuration wizard.
C.Create an automated Apex trigger in CRM to delete closed cases before sync.
D.Use a Calculated Insight to drop closed cases from the DMO.
AnswerB

Data stream filters allow administrators to restrict ingested records by specifying criteria during setup.

Why this answer

Salesforce CRM data streams support data filtering (where clauses) during the data stream creation wizard to restrict which records are ingested based on criteria.

271
MCQmedium

A company wants to leverage Salesforce CRM data (Accounts, Contacts, and Leads) inside Data Cloud. Which native mechanism should the consultant use to ingest this data?

A.Salesforce CRM Connector (Standard Connector)
B.Marketing Cloud Connect
C.Third-party ETL tool via REST API
D.Bulk CSV Data Loader
AnswerA

The standard Salesforce CRM connector natively ingests Sales and Service Cloud objects directly into Data Cloud.

Why this answer

The CRM connector is the native, zero-ETL integration tool used to ingest standard and custom objects from Salesforce CRM into Data Cloud.

272
MCQhard

An enterprise is ingesting orders from an external ERP system. Each order record contains a status code represented as an integer (e.g., 1 = Pending, 2 = Shipped, 3 = Cancelled). The client wants these numeric codes translated into readable text descriptions during harmonization. How should the consultant achieve this?

A.Store the numbers as integers and write a Tableau dashboard translation table.
B.Create a custom Apex class in the ERP system to rewrite codes before export.
C.Use a formula transformation during field mapping with a CASE statement to translate codes into text descriptions.
D.Create a master data stream specifically for status code translation tables.
AnswerC

Mapping formulas support conditional functions like CASE to translate codes on the fly.

Why this answer

During field mapping, consultants can use formula functions (such as `CASE` or conditional statements) to transform numeric status codes into readable text strings.

273
MCQmedium

An administrator needs to ingest data from an external relational database into Data Cloud using a scheduled batch process. Which connector type is best suited for this requirement?

A.Cloud Storage Connector (e.g., Amazon S3, Google Cloud Storage, Azure Blob Storage)
B.Marketing Cloud Connector
C.Real-Time Interaction Collector
D.Salesforce CRM Connector
AnswerA

Cloud Storage connectors allow administrators to schedule batch ingestion of files (CSV, JSON, Parquet) stored in cloud buckets.

Why this answer

External database ingestion where Salesforce pulls data via batch files or direct connections can utilize Cloud Storage connectors (like S3, Google Cloud Storage, Azure Blob) or standard file upload methods. For scheduled batch file drops, Cloud Storage connectors are standard.

274
MCQeasy

What is the term for a pre-packaged collection of data streams, data model mappings, and insights designed for a specific Salesforce application?

A.Data Action
B.Activation Target
C.Data Bundle
D.Calculated Insight
AnswerC

Data bundles provide pre-packaged streams and mappings for specific sources.

Why this answer

Data bundles are pre-packaged sets of metadata and configuration that accelerate onboarding for specific data sources.

275
Multi-Selecthard

Which THREE technical factors can negatively impact Identity Resolution performance or job execution time in Data Cloud? Choose 3 options.

Select 3 answers
A.Scheduling identity resolution to run during off-peak hours.
B.Overly broad fuzzy match rules lacking sufficient pre-filtering criteria.
C.Using Source Sequence reconciliation rules instead of Most Recent.
D.Processing extremely high data volumes without structuring match rules hierarchically.
E.Improperly mapped primary key and foreign key relationships on source DMOs.
AnswersB, D, E

Broad fuzzy rules create massive computational overhead.

Why this answer

Performance issues are often caused by overly broad fuzzy rules, unindexed or unmapped key relationships, and massive Cartesian products from poor rule design.

276
MCQeasy

A marketing team wants to analyze customer lifetime value (LTV) across all business units before segmenting on it. Where should the consultant build this metric?

A.Data Streams
B.Segment Canvas
C.Activation Membership
D.Calculated Insights
AnswerD

Calculated Insights are designed for aggregating and computing metrics like LTV.

Why this answer

Calculated Insights allow users to write SQL-like queries to aggregate metrics like LTV across unified data models.

277
MCQeasy

A retail organization wants to push segment membership data to Google Cloud Storage on a nightly basis. Which type of Activation Target should the consultant create?

A.Data Action Target
B.Ad Platform Activation Target
C.Cloud File Storage Activation Target
D.Marketing Cloud Activation Target
AnswerC

Correct. Cloud File Storage supports targets like Amazon S3 and Google Cloud Storage for file-based exports.

Why this answer

Cloud File Storage activation targets, such as Amazon S3, Google Cloud Storage, or Azure Blob Storage, allow organizations to export batch segments to file storage systems.

278
MCQeasy

Which Salesforce product icon or menu item leads administrators to the Data Cloud setup and configuration landing page?

A.Tableau Server connection manager
B.Marketing Cloud Engagement administration panel
C.Heroku dashboard settings
D.Data Cloud Setup in Salesforce CRM Setup menu
AnswerD

Data Cloud Setup is accessed directly through Salesforce CRM Setup.

Why this answer

In Salesforce CRM Setup, administrators can search for 'Data Cloud Setup' to access the core administration landing page.

279
MCQhard

An organization is setting up a streaming activation to Google Cloud Storage. They notice that records are being delayed significantly before appearing in the destination bucket. What is the most likely architectural bottleneck causing this latency?

A.The Google Cloud Storage bucket has reached its maximum file count limit per directory.
B.The Connected App token has expired, requiring manual re-authentication.
C.The activation target is configured for batch publishing rather than real-time streaming, or the micro-batch window is queueing records.
D.The Data Model Object relationships lack primary key definitions, causing full table scans.
AnswerC

Cloud storage targets typically process data in micro-batches or scheduled intervals, introducing latency compared to real-time API webhooks.

Why this answer

Streaming activations in Data Cloud rely on streaming data transforms and micro-batching intervals. If the source data stream has high latency or if batch publication windows are large, publishing is delayed.

280
Multi-Selecthard

Which THREE of the following are valid considerations when using Calculated Insights within segment definitions? (Choose three.)

Select 3 answers
A.Calculated Insights update instantly in real time during segment canvas configuration without prior batch processing.
B.Calculated Insights automatically override and delete underlying Data Lake Objects.
C.The Calculated Insight must include the Individual or Profile dimension to link to unified profiles.
D.The Calculated Insight must be in a 'Published' status before it can be selected in the Segment Canvas.
E.Calculated Insight metrics appear as attributes that can be used in filter criteria within the Segment Canvas.
AnswersC, D, E

Without the Profile dimension, the insight cannot be associated with unified customer profiles for segmentation.

Why this answer

Calculated Insights used in segmentation must be published, must include profile dimensions, and participate in batch evaluation schedules.

281
Multi-Selecthard

A consultant needs to configure a Data Action Target that connects to an external REST API webhook. Which TWO configuration steps or security features should be implemented? (Choose two.)

Select 2 answers
A.Map Salesforce Core Case assignment rules to the webhook payload.
B.Upload a Parquet encryption key for AWS S3 bucket storage.
C.Configure custom authorization headers or API keys required by the external endpoint.
D.Set the Data Stream ingestion batch refresh interval to 24 hours.
E.Specify a secure HTTPS endpoint URL capable of handling incoming JSON payloads.
AnswersC, E

External APIs typically require API keys or bearer tokens in request headers for authorization.

Why this answer

Configuring a REST webhook Data Action Target requires setting the endpoint URL, specifying secure HTTPS communication, and providing authentication headers or tokens.

282
MCQmedium

An administrator is configuring a Web and Mobile data stream in Data Cloud to track user behavior. Which prerequisite code or SDK must be implemented on the website to feed data into this stream?

A.Salesforce Lightning Component Bundle
B.Marketing Cloud Server-Side JavaScript (SSJS)
C.Data Cloud Web SDK / Interaction SDK
D.Salesforce Mobile SDK for iOS/Android core apps only
AnswerC

The Data Cloud Interaction SDK / Web SDK is embedded on websites to capture and stream real-time user events.

Why this answer

Web and Mobile data streams rely on the Interaction SDK or tracking code snippets provided during stream creation in Data Cloud.

283
MCQeasy

What is the primary purpose of a Segment in Salesforce Data Cloud?

A.To calculate real-time machine learning propensity scores.
B.To transform raw data files into standardized Data Lake Objects.
C.To group unified profiles based on specific criteria for activation to marketing and engagement channels.
D.To resolve duplicate customer records into a single unified profile.
AnswerC

Segments define target audiences for activation.

Why this answer

Segments group unified customer profiles based on demographic, behavioral, and calculated criteria to enable targeted marketing, sales, and service activations.

284
MCQeasy

When configuring a Data Action, what are the two main components that must be linked together?

A.An Identity Resolution Ruleset and a Calculated Insight
B.A Segment and an Activation Target
C.A Data Source/Event and a Data Action Target
D.An Ingestion API connection and an SFTP server
AnswerC

Data Actions require a triggering source event and a defined target destination.

Why this answer

A Data Action connects a data event source (such as a streaming data transform or data model object) to a Data Action Target (such as a webhook or Salesforce Core feature).

285
Multi-Selectmedium

Which THREE outcomes occur when source records are successfully matched and linked into a unified profile during Identity Resolution? Choose 3 options.

Select 3 answers
A.Core Salesforce CRM records are automatically overwritten and modified.
B.Reconciliation rules evaluate contributing records to populate the attributes on the Unified Individual profile.
C.Source records are permanently deleted from the source data streams.
D.Unified Link records are created to connect the source records to the unified profile.
E.The unified profile becomes available for segmentation and activation across connected targets.
AnswersB, D, E

Reconciliation rules determine attribute survivorship on the unified profile.

Why this answer

Successful linking creates unified link records, populates the unified individual profile using reconciliation rules, and enables unified segmentation.

286
MCQeasy

A consultant is configuring a Salesforce CRM data stream and wants to include standard Account fields along with custom fields. Where are the fields selected during the Data Cloud data stream creation process?

A.By modifying the JSON configuration file of the connector bundle
B.In Setup under Object Manager
C.In the Data Model Object mapping canvas
D.In the Data Stream creation wizard under the Fields selection step
AnswerD

Field selection for Salesforce CRM data streams happens directly within the data stream configuration wizard.

Why this answer

During the Salesforce CRM data stream creation wizard, administrators select the individual objects and then pick the specific fields they wish to ingest.

287
MCQhard

During an implementation review, a consultant notices that multiple identity resolution rulesets have been created within a single data space, leading to conflicting unified profiles and redundant processing. What is the Salesforce-recommended best practice for ruleset architecture?

A.Assign each match rule to a separate data space automatically.
B.Consolidate into a single, comprehensive identity resolution ruleset per data space containing all required match rules and reconciliation rules.
C.Disable all rulesets and rely exclusively on Calculated Insights for matching.
D.Create one ruleset per data stream to ensure isolated processing.
AnswerB

Having a single ruleset per data space prevents profile conflicts and optimizes processing efficiency.

Why this answer

Salesforce best practice recommends maintaining a single, well-structured identity resolution ruleset per data space containing all necessary match and reconciliation rules to avoid conflicts and redundancy.

288
MCQeasy

Which Salesforce Edition is required to access Data Cloud features?

A.Professional Edition
B.Enterprise Edition and higher
C.Group Edition
D.Only Performance Edition
AnswerB

Enterprise and Unlimited are the supported editions for Data Cloud.

Why this answer

Data Cloud is available as an add-on across various Salesforce editions, including Enterprise and Unlimited, through the 'Data Cloud' SKU.

289
MCQmedium

A Data Cloud Consultant has ingested customer records from two different source systems. During Identity Resolution, records are matching successfully, but the first name field on the unified profile is populated with a lowercase name from System A instead of the capitalized name from System B. Which feature should the consultant configure to control which source attribute value populates the unified profile?

A.Calculated Insight SQL
B.Reconciliation Rules
C.Match Rules
D.Data Stream Transformation Formulas
AnswerB

Reconciliation rules (such as Most Recent, Least Recent, or Source Priority) control attribute-level precedence for unified profiles.

Why this answer

Reconciliation Rules determine which attribute values from contributing source records populate the fields on the Unified Individual profile.

290
MCQmedium

A consultant needs to deliver segment membership data to an SFTP server daily. Which component must be configured alongside the segment and activation?

A.Ingestion API SFTP Endpoint
B.SFTP Activation Target
C.Data Action SFTP Connector
D.Marketing Cloud FTP Bridge
AnswerB

An SFTP Activation Target defines the connection parameters for file delivery.

Why this answer

An SFTP Activation Target must be configured with connection details, credentials, and file format settings to deliver segment files.

291
MCQmedium

A consultant is configuring a match rule using Exact Name and Exact Email. How does Data Cloud evaluate multiple rules within the same ruleset?

A.Multiple match rules require strict AND logic, meaning all rules must match simultaneously for records to link.
B.Match rules execute sequentially where failing the first rule deletes the record.
C.Only the first match rule in the list is executed; subsequent rules are ignored.
D.Multiple match rules within a ruleset are evaluated with OR logic, meaning records matching any of the active match rules will be linked.
AnswerD

Rulesets combine match rules using OR logic to group profiles.

Why this answer

Within an identity resolution ruleset, multiple match rules are evaluated using an OR condition logic (if a record matches Rule A OR Rule B, they are linked into the same cluster).

292
MCQhard

An administrator has configured a Calculated Insight that aggregates customer purchase totals. However, when users try to use this Calculated Insight in a segment, the insight is unavailable. What is the most likely administrative oversight?

A.The Calculated Insight must be exported to Amazon S3 before it can be used in segments.
B.The Calculated Insight has not been successfully published or built, or lacks the necessary object relationships for segmentation.
C.The user lacks the 'View Setup and Configuration' permission in core CRM.
D.Calculated insights cannot be used in segments; only Data Model Objects can be used.
AnswerB

Insights must be in a 'Published' state and correctly structured with dimensional relationships to be selectable in segment builders.

Why this answer

Calculated insights must be published and associated with the correct Data Space and object relationships to be available in segmentation.

293
MCQmedium

An organization requires a segment that updates continuously in real-time as users perform specific clickstream actions on a website. Which limitation must the Data Cloud consultant keep in mind when designing a streaming segment?

A.Streaming segments cannot contain more than three filter criteria.
B.Streaming segments must be published manually every 24 hours.
C.Streaming segments cannot be used with Marketing Cloud Engagement activation targets.
D.Streaming segments only support attributes from DMOs enabled for streaming ingestion.
AnswerD

Streaming segments require streaming-enabled DMOs because they evaluate segment membership in real-time as events arrive.

Why this answer

Streaming segments have specific architectural constraints. They evaluate criteria on streaming data and can only include attributes from DMOs that support streaming and are related directly or via specific cardinality paths. They cannot use batch-only dimensions or certain complex cross-object joins that batch segments support.

294
MCQmedium

A Data Cloud Consultant is configuring a Data Cloud Activation to send audience segments to Marketing Cloud Engagement via Contact Builder. The consultant notices that the activation is failing because the Contact Key mapping is missing. What is the required step to resolve this issue in Data Cloud?

A.Create a Calculated Insight that aggregates the Contact Key before creating the activation segment.
B.Modify the Data Stream ingestion mapping to automatically designate the Subscriber Key as the primary key.
C.Map the Data Cloud Primary Key to the Marketing Cloud Contact Key within the Activation Target configuration.
D.Rebuild the Segment definition to include the Subscriber Key attribute as an inclusion criterion.
AnswerC

Correct. The Activation Target must explicitly map the primary identifier to the target platform key field.

Why this answer

To activate data to Marketing Cloud Engagement, the Activation Target must correctly map the Data Cloud Individual or Contact DMO primary key to the Subscriber Key or Contact Key in Marketing Cloud Engagement.

295
MCQmedium

A consultant is setting up a Data Action to trigger a notification when a high-value customer profile is updated. When testing the Data Action, no events are triggering. What should the consultant verify first?

A.Increase the batch size of the cloud storage activation target.
B.Verify that the streaming data source is actively receiving events and that the Data Action filter criteria correctly match the incoming payload values.
C.Rebuild the Identity Resolution ruleset from scratch.
D.Check the Marketing Cloud Engagement activation history logs.
AnswerB

Data Actions require active streaming data flow and precise filter criteria to trigger successfully.

Why this answer

Troubleshooting Data Actions begins with verifying that the streaming data source is actively receiving events and that the Data Action filter criteria match incoming payload values.

296
MCQhard

An administrator has configured a Marketing Cloud connector in Data Cloud. However, data streams are failing to initialize because the connected user lacks permissions. Which configuration error most likely occurred?

A.The Marketing Cloud connector user lacks API Integration and Data View permissions.
B.The connected user was not assigned the Data Cloud Admin permission set in Salesforce CRM.
C.The Marketing Cloud tenant URL was entered using HTTP instead of HTTPS.
D.The Marketing Cloud Business Unit was not mapped to a Data Space.
AnswerA

Data Cloud requires the Marketing Cloud API user to have appropriate permissions to access data views and make API calls.

Why this answer

Connecting Marketing Cloud requires the Marketing Cloud connector user to have specific API and data view permissions enabled in Marketing Cloud before establishing the connection in Data Cloud Setup.

297
MCQmedium

An administrator needs to ingest transactional data that updates frequently throughout the day. Which ingestion method should the administrator set up to ensure near real-time data availability in Data Cloud?

A.Scheduled CSV batch ingestion via Amazon S3 every 24 hours.
B.Streaming Ingestion API or Web/Mobile SDK.
C.Manual file upload via Data Cloud Setup every hour.
D.Salesforce CRM nightly batch data sync bundle.
AnswerB

Streaming data sources allow events to be pushed or streamed into Data Cloud in near real-time.

Why this answer

Near real-time ingestion is achieved via streaming data sources such as the Ingestion API or Mobile/Web SDKs.

298
MCQhard

An organization is ingesting high-frequency transactional data from a mobile app using the Ingestion API. They notice that records are failing with a validation error regarding primary keys. What must the consultant verify in the Ingestion API payload structure?

A.Check that the primary key is hashed using MD5 before sending the payload to the Data Cloud endpoint.
B.Ensure that the primary key field is designated as nullable within the connected source object schema.
C.Confirm that the primary key matches the Salesforce Organization ID.
D.Verify that the primary key field is explicitly mapped and populated with unique values in every incoming JSON batch object.
AnswerD

The Ingestion API payload must contain unique values for the primary key specified in the connector schema to process successfully.

Why this answer

The Ingestion API requires a defined primary key in the schema definition payload, and each incoming record must supply a unique value for this designated primary key field to prevent payload rejection.

299
MCQhard

A consultant configures an activation to send segment membership to Marketing Cloud Engagement. When the activation runs, contacts are successfully added to a Data Extension, but some subscriber attributes are missing. What should the consultant verify?

A.Verify that the Segment Canvas includes the missing fields as filter criteria.
B.Rebuild the Calculated Insight with a different aggregation window.
C.Ensure the missing attributes are mapped in the Activation attribute selection screen.
D.Check that the Identity Resolution rule set includes the missing attributes as matching rules.
AnswerC

Attributes must be explicitly added to the activation payload to be populated in the target Data Extension.

Why this answer

Additional attributes must be explicitly selected as part of the activation's attribute mapping configuration.

300
Multi-Selectmedium

A Data Cloud Consultant is configuring data stream mappings from a raw Data Lake Object (DLO) to the Individual Data Model Object (DMO). Which THREE components or concepts are critical during this mapping process? (Choose three.)

Select 3 answers
A.Manual execution of SQL Server stored procedures on the source database.
B.Direct deployment of Apex triggers to transform data during mapping.
C.Target Data Model Object (DMO) selection
D.Data type compatibility and transformation formulas
E.Primary key and foreign key relationship mapping
AnswersC, D, E

Consultants must select the appropriate target DMO (e.g., Individual, Contact Point Email).

Why this answer

Data stream mapping requires selecting the target DMO, mapping matching primary/foreign keys, and ensuring attribute data types align properly.

Page 3

Page 4 of 7

Page 5

All pages