Northern Trail Outfitters uses a number to uniquely identify contacts across different marketing channels.
Which two actions should the developertake to ensure the contacts relate across channels in Marketing Cloud when working with the data model?
Choose 2 answers
Answer : B, D
To ensure that contacts relate across different channels in Marketing Cloud, you need to link the unique identifier used across channels to the Contact ID in Contact Builder. This involves creating Attribute Groups and establishing the relationships between the unique identifier and the Contact ID.
Link the Numeric Field Value: By linking the numeric unique identifier to the Contact ID in Attribute Groups, you ensure that each contact is uniquely identified across channels.
Create Attribute Groups: Attribute Groups in Contact Builder allow you to map the relationships between different data sources and the Contact object, ensuring that the unique identifier is connected correctly for each channel.
: Salesforce Contact Builder Documentation
What can be created in Attribute Groups within Contact Builder? Choose 2.
Answer : A, B
Northtrn Trail Outfitters (NTO) wants to import a data file. It will be uploaded at regular intervals to their Enhanced FTP Account where an automation will import the file Into a data extension. NTO requires the file to be encrypted.
Which two file encryption options are supported when importing data files to Marketing Cloud?
Choose 2 answers
Answer : A, D
When importing data files to Marketing Cloud, the supported file encryption options are:
PGP encryption (A) - Pretty Good Privacy (PGP) encryption is supported for securing files.
AES encryption (D) - Advanced Encryption Standard (AES) encryption is also supported for file security.
Salesforce Marketing Cloud File Import Activity
File Transfer and Encryption Options
A developer wants to build an email that dynamically populates the physical address of a company's locations using the variable address. The deployment goes to millions of subscribers and the developer wants the fastest possible performance.
Which AMPscript solution should be recommended?
Answer : D
To dynamically populate the physical address of a company's locations using the variable @address and ensure the fastest possible performance for millions of subscribers, the recommended AMPscript solution is:
%%[ SET @address = Lookup('Building_Locations', 'Address', 'Id', @Id) ]%%
This solution uses the Lookup function, which retrieves a specific field value from a data extension based on the given criteria. It is efficient and performs well for high-volume sends.
Salesforce Marketing Cloud AMPscript Guide
Salesforce Marketing Cloud Documentation
NTO wants use Personally Identifiable Information (PII) data to personalize email communications, but does not want to store PII data in Marketing Cloud. Which feature could they use topersonalize emails from an external data source?
Answer : B
A developer receives a 401 Unathorized HTTP status message from a REST API request. What is the reason for this error?
Answer : B
A 401 Unauthorized HTTP status message indicates that the request was not authenticated properly. This error commonly occurs when the access token is missing, invalid, or expired.
Access Token Issues: The most common cause of a 401 error in REST API requests is related to the access token. The request must include a valid access token in the authorization header.
Example Authorization Header: Authorization: Bearer YOUR_ACCESS_TOKEN
: Salesforce API Access Tokens
Certification Aid wants to create a file drop automation with a filename pattern. An import file is placed daily on the Marketing Cloud Enhanced FTP server, and thefile name always starts with the current month and day (e.g. OCT26). How should the filename pattern be defined? Choose 2.
Answer : B, D
To define a filename pattern that matches files starting with the current month and day, you can use the %%MMDD%% pattern and the 'Begins With' operator.
%%MMDD%% Pattern: This pattern represents the month and day in a two-digit format.
Begins With Operator: This operator ensures that the automation matches filenames that start with the specified pattern.
: Salesforce File Drop Automations