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

Marketing-Cloud-Developer Salesforce Certified Marketing Cloud Developer (SP23) Questions and Answers

Questions 4

A developer wants to create an AMPscript FOR loop that populates HTML table rows based on the number of rows and data in a target DE. Where should the developer place the FOR keyword to begin the loop?

Options:

A.

Before the

tag

B.

Before the

tag

D.

Before the

tag

Buy Now
Questions 5

A developer receives Error Code 5 when performing a SOAP API call. The error states: "Cannot Perform 'Post' on objects of type 'SentEvent'".

What could be the issue?

Options:

A.

SOAP does not support POST; useREST

B.

The authentication token has expired.

C.

It may be a temporary network issue.

D.

'SentEvent' is not able to be updated using SOAP.

Buy Now
Questions 6

A developer built a complex dynamic email with many data variants. Rather than create test data manually, they want to use a subset of live data to validate the dynamic aspects of the email.

Which SQL function should be used to collect a representative sample from a larger data set?

Options:

A.

HAVING

B.

OVER

C.

NTILE

Buy Now
Questions 7

A developer wants to write a query to compile data originating from an HTML form so it can be exported in CSV format. However, the source data extension may containline breaks within the Comments field, which makes it difficult to read and sort the resulting CSV.

Which SQL functions could be used to change each line break to a single space?

Options:

A.

REPLACE and CHAR

B.

FORMAT and SPACE

C.

LTRIM and RTRJM

D.

REPLICATE and NCHAR

Buy Now
Questions 8

A developer is notified the View Email As Web Page (VAWP) link, when clicked, displays the message, The system is temporarily unavailable. We apologize for any inconvenience. Please try again later.

What could be a possible cause for the error

Options:

A.

The data in the data extensions used at the time of send was overwritten.

B.

The email used at the time of send was deleted, updated, or moved.

C.

The sender profile used at the time of send was overwritten.

D.

The data extension used at the time of send was moved to another folder.

Buy Now
Questions 9

A developer created anemail with AMPscript variable as the subject line. The subject line variable was recently updated, but when testing the email, the wrong subject line continues to appear in the inbox. The developer thinks another, outdated, subject line variable is declared within the email. Where could the outdated variable be located?

Options:

A.

In the HTML body which is processed after the Text body

B.

In the Text body which is processed after the subject line

C.

In the Text body which is processed after the HTML body

D.

In theHTML body which is processed after the subject line

Buy Now
Questions 10

Which AMPscript function group could most negatively Impact send processing?

Options:

A.

String functions

B.

Data extension functions

C.

Date Time

D.

Math functions

Buy Now
Questions 11

A new record is appendedto the Orders data extension each time a customer makes a purchase. Which SQL statement would select a unique list of subscribers who have made multiple purchases?

Options:

A.

SELECT TOP 1 SubscriberKey FROM Orders

B.

SELECT DISTINCT SubscriberKey FROM Orders

C.

SELECT SubscriberKey FROM Orders GROUP BY SubscriberKey

D.

SELECT SubscriberKey FROM Orders GROUP BY SubscriberKey HAVING COUNT(*)>1

Buy Now
Questions 12

A marketer is troubleshooting why an email send's tracking information is not available in Sales Cloud. The marketer confirms MarketingCloud Connect is installed properly. What should be confirmed next to continue troubleshooting the send's tracking information?

Options:

A.

The audience was a Salesforce Data Extension containing the appropriate SFID

B.

The email was sent to the All Subscribers list

C.

The tracking destination folder was set to My Tracking

D.

The audience was built using a Triggered Send Data Extension template

Buy Now
Questions 13

A developer wants to retrieve all recordsin the OrderDetails data extension which are associated with a particular customer.

Which two AMPscript functions would return a suitable rowset?

Choose 2 answers

Options:

A.

LookupRows

B.

LookupOrderedRows

C.

Row

D.

Lookup

Buy Now
Questions 14

NTO puts the word TEST at the beginning of the namefor each test email. Which query would return the subs who were sent those emails?

Options:

A.

SELECT * FROM _Job J INNER JOIN _Sent S on J.EmailName LIKE 'TEST%'

B.

SELECT * FROM _Job INNER JOIN _Sent on JobID = JobID WHERE EmailName LIKE 'TEST%'

C.

SELECT * FROM_Job J INNER JOIN _Sent S ON.JobID = S.JobID WHERE J.EmailName LIKE 'TEST%'

D.

SELECT * FROM _Job J INNER JOIN _Sent S on J.JobID = JobID = S.JobID WHERE J.EmailName = 'TEST%'

Buy Now
Questions 15

A developer wants to use the Marketing Cloud SOAP API to retrieve which subscribers were sent a particular email. Which SOAP API object should be used?

Options:

A.

Send

B.

ListSend

C.

SentEvent

D.

LinkSend

Buy Now
Questions 16

Northern Trail Outfitters' legal team is concerned about the daily import process that brings in subscribers to a Sendable Data Extension, even when records have already been targeted for deletion.

Which two true expected behaviors for these recordsoccur in the event a send is initiated directly to this Sendable Data Extension?

Choose 2 answers

Options:

A.

Records still in the suppression phase will only be excluded if manually specified during send time.

B.

Records still in the suppression phase will beexcluded from sends.

C.

Records that have already been deleted will be treated as new records.

D.

Records that have been deleted will be excluded from sends Indefinitely.

Buy Now
Questions 17

Which SSJS library can be used in email messages? Choose 1.

Options:

A.

Both

B.

Platform

C.

None

D.

Core

Buy Now
Questions 18

Northtrn Trail Outfitters has set up their North American business unit to unsubscribe at the business unit level.

Which dataview would they query to identify all subscribers who are unsubscribed from that Business Unit?

Options:

A.

ListSubscribers

B.

ENT._Subscribers

C.

_BusinessUnitUnsubscribes

D.

.Subscribers

Buy Now
Questions 19

A developer receives a request to integrate Marketing Cloud with a lead capture tool. The lead capture toolwill call the Marketing Cloud API to create a data extension every time a new lead form is published. The created data extension's name should match the name of the form exactly.

Which API feature could the developer use to dynamically create these data extensions?

Options:

A.

SOAP API using Create Method and the DataExtension Object

B.

REST API using POST on the /interaction/v1/EventDefinitions endpoint with Schema populated

C.

REST API using POST on the /data/v1/customobjectdata/ endpoint

D.

Creating the data extension using API is not possible

Buy Now
Questions 20

Certification Aid wants to add new customers to a cross-channel welcome campaign when they register on the company website. Which API should be used for this? Choose 1.

Options:

A.

Personalization Builder API

B.

Event Notification API

C.

Transactional Messaging API

D.

Journey Builder API

Buy Now
Questions 21

A developerwants to retrieve daily JSON data from a customer's API and write it to a data extension for consumption in Marketing Cloud at a later time.

What set of Server-Side JavaScript activities should the developer use?

Options:

A.

Platform.Function.InvokeRetrieve(); Platform.Function.ParseJSON(); Platform.Function.UpsertData();

B.

Platform.Function.HTTPGet(); Platform.Function.ParseJSON(); Platform.Function.UpsertData();

C.

Platform.Function.InvokeRetrievef); Platform.Function.Stringify(); Platform.Function.UpsertDE();

D.

Platform.Function.HTTPGe(); Platform.Function.Stringify(); Platform.Response.Write();

Buy Now
Questions 22

Northern Trail Outfitters (NTO) stores most of their customer data in Marketing Cloud. They do not mind their data being viewed in clear text within SFMC to users who have access, but they want to ensure the underlying database files are encrypted at rest in case the physical media is stolen.

Which encryption method should NTO use?

Options:

A.

Encrypted Data Sending

B.

Field-Level Encryption

C.

Tokenized Sending

D.

Transparent Data Encryption

Buy Now
Questions 23

Northern Trail Outfitters (NTO) uses a numeric identifier for Subscriber Key. Customer data is stored in a data extension with the Subscriber Key set as a Primary Key.

Which step is required for NTO when creating relationships for this data extension in Data Designer'

Options:

A.

Link the Contact ID to the Subscriber Key when creating the relationship

B.

Use a one-to-one cardinality when creating the relationship

C.

Link the Contact Key to the Subscriber's email address when creating the relationship

D.

Set Subscriber Key as a text data type before linking the data extension to Contact Key

Buy Now
Questions 24

A developer is building an integration with theMarketing Cloud API. Which configuration should be used for the API integration component in the associated Installed Package?

Options:

A.

Select the minimum required scope for the integration

B.

Select all available options to enable package reuse for the futureintegrations

C.

Select the 'Require Secret for Web Flor' option

D.

Select the 'Admin-approved users are pre-authorized' option under Permitted Users.

Buy Now
Questions 25

A particular data extension need to be configured to store six months of data.

How shoulddata retention be added to the data extension in Email Studio?

Options:

A.

Run a query to overwrite the rows with six months of data

B.

Import a file to overwrite the rows with six months of data

C.

Create a new data extension that includes data retention settings

D.

Update the data extension configuration to include data retention settings.

Buy Now
Questions 26

Which activity is required before a compressed file can be imported?

Options:

A.

Import File

B.

Data Extract

C.

Decompress File

D.

File Transfer

Buy Now
Questions 27

A developerwants to transform the date and time 'Data_Enrolled' from Daylight Savings time. How would the developer change the time to fall back one hour?

Options:

A.

%%=DataAdd(Date_Enrolled,-1)=%%

B.

%%=DateAdd(Date_Enrolled,-1 'H')=%%

C.

%%=DateDiff(Date_Enrolled, 1,'H')=%%

D.

%%=FormatDate(Date_Enrolled,-1,'HH','en-us')=%%

Buy Now
Questions 28

What can be created in Attribute Groups within Contact Builder? Choose 2.

Options:

A.

Data Extensions

B.

Relationships

C.

Populations

D.

Attribute Groups

Buy Now
Questions 29

Clock Kicks would like to encrypt and storeform data submitted from a CloudPage in a data extension using AMPscript. Which three encryption options could be used when creating a new key in Key Management? Choose 3

Options:

A.

SAML

B.

Asymmetric

C.

RSA

D.

Salt

E.

Symmetric

Buy Now
Questions 30

A developer wants to include a comment within an AMPscript code block for the benefit of other developers who will be reviewing the code.

Which syntax should the developer use?

Options:

A.

< !- This is a comment

B.

// This is acomment

C.

-- This is a comment

D.

/" This is a comment */

Buy Now
Questions 31

Certification Aid wants to update Contact data stored in a Data Extension using the REST API. What is required to achieve this? Choose 1.

Options:

A.

The Data Extension must be in an Attribute Group.

B.

The Data Extensionmust be in a Population.

C.

The Data Extension must be sendable.

D.

The Data Extension must be created in Email Studio.

Buy Now
Questions 32

A customer wants to export send data to their SFTP. Which two automationswould accomplish this? Choose 2

Options:

A.

Tracking Extract

B.

Tracking Extract > File Transfer

C.

Query (Data Views) > Data Extension Extract > File Transfer

D.

Query (Data Views) > File Transfer

Buy Now
Questions 33

Certification Aid wants to import data from a CSV file into a Data Extension. The CSV filecontains all relevant data. New records should be added to the Data Extension, and records which are not in the file should be removed from the Data Extension. Which import operation should be chosen for this? Choose 1.

Options:

A.

Add only

B.

Overwrite

C.

Add andupdate

D.

Update only

Buy Now
Questions 34

A developer wants to build an audience by identifying subscribers who opened a specific email. Which query should the developer use?

Options:

A.

SELECT * FROM _Open WHERE ListID = '1234'

B.

SELECT * FROM_Open WHERE JobID = "1234"

C.

SELECT SubscriberID FROM _Open WHERE JobID = "1234"

D.

SELECT SubscriberKey FROM _Open WHERE JobID = '1234'

Buy Now
Questions 35

A developer is using the legacy endpoint www.exacttargetapis.com and hasbeen asked to switch to Tenant Specific Endpoints (TSEs). What is a benefit of switching to TSEs?

Options:

A.

A longer lasting OAuth token

B.

API calls will no longer fail

C.

Gain access to TSE-specific REST routes

D.

Improved API performance

Buy Now
Questions 36

Which programming language should be used in email messages? Choose 1.

Options:

A.

AMPscript only

B.

Both

C.

Either AMPscript or SSJS

D.

SSJS only

Buy Now
Questions 37

A company has chosen to use the REST API for triggered sends, but they continue to get the following error during their testing: "Unable to queue Triggered Send request. There are no valid subscribers." They were informed that the SOAP API provides more information about the error, and found that their payload did not include a required data extension field.

Which element of the SOAP API response provides this level of detail?

Options:

A.

ErrorDescription

B.

OverallStatus

C.

ErrorCode

Buy Now
Questions 38

Northtrn Trail Outfitters mistakenly synced the User_Salesforce object which added to their billable contact count.

What should be recommended to remove these contacts'

Options:

A.

Update the sync to remove these contacts from the All Contacts table.

B.

Use the REST API to delete the contacts from the All Subscribers table.

C.

Put the synced records into a sendable data extension and use Contact Delete.

D.

Use the SOAP API to delete the contacts from theAll Contacts table.

Buy Now
Questions 39

Northern Trail Outfitters wants to trigger follow upmessages after a subscriber opens an email.

What process would they use to get real-time engagement data?

Options:

A.

Query Activity

B.

Client-Side JavaScript

C.

WSproxy Service

D.

Event Notification Service

Buy Now
Questions 40

A developer is using the REST Authorization Service to obtain an OAuth access token. Which method should be used to include the access token in the API requests

Options:

A.

Include the header x-access-token: your_access_token

B.

Include as a query parameter access_token=Y0UR_ACCESS_TOKEN

C.

Include the header Authorization: Basic your_access_token

D.

Include the header Authorization: Bearer YOUR ACCESS TOKEN

Buy Now
Questions 41

A developer needs to import a file into a data extension which contains transactional data. The file includes a column labeled Purchase_Price with values varying from '$.05' to '$100'.

What Data Type should be used to prevent loss of data'

Options:

A.

Text

B.

Number

C.

Decimal(9,2)

Buy Now
Questions 42

A developer used LookupRowsto retrieve data when building a dynamic email.

What should be the next step before using this rowset within a FOR loop?

Options:

A.

Use Row to return a specific row of the rowset

B.

Set the rowset to a new array variable

C.

Close the delimited AMPscrlpt Code Block

D.

Use RowCount to ensure the rowset contains data

Buy Now
Questions 43

NTO uses data extensions to manage the subscriber information usedfor their email sends, and those sends includes calls to update records with new or different subscriber information. The developer handling these records writes some AMPscript to check and see if the data extension containing those records updated usingan InsertDE() call if the record doesn't yet exist. Why would the developer receive an error stating the application cannot insert a duplicate value for the primary key in the data extension?

Options:

A.

The InsertDE function will always insert two rows into a data extension as part of the call

B.

The InsertDE function cannot be used with name and value pairs

C.

The InsertDE function comes after the system added the row as part of the email send

D.

The InsertDE function cannot be used at send time

Buy Now
Questions 44

A developer is querying data from the _Bounce data view and storing it in a data extension. They have found that sometimes the fields SMTPBounceReason and SMTPCode exceed the 4000-character limits for each field as specified in the DE schema. After consulting with the original requestor, it was decided that they could simply store the first 4000 characters for each of those fields.

Which SQL function could be used for this purpose?

Options:

A.

RIGHT

B.

FIRST

C.

LEFT

Buy Now
Questions 45

Northern Trail Outfitters (NTO) wants to prevent competitors fromreceiving a coupon email. They also want to capture email addresses of competitors who are included in the targeted audience.

Which feature could NTO use to prevent the coupon from being sent and report the email addresses skipped?

Options:

A.

Auto-Suppression list

B.

RaiseError AMPscript function

C.

Exclusion Script

D.

Try/Catch SSJS functions

Buy Now
Questions 46

How often should a developer request a new token when making multiple API calls in v1?

Options:

A.

When changing routes/objects

B.

Before every new call

C.

Once an hour

D.

Every 15 minutes

Buy Now
Questions 47

What is the operational order of the Contact Delete process for Marketing Cloud?

Options:

A.

Delete initiated > Suppression phase > Final Deletion

B.

Delete initiated > Final deletion

C.

Delete initiated > Final deletion >Suppression phase

D.

Data identified > Suppression phase > Delete initiated > Account page

Buy Now
Questions 48

Certification Aid wants to automate the import of zipped files into a Data Extension. The zip files are placed on the Marketing Cloud Enhanced FTP server every night. Which activity is needed before those files can be imported? Choose 1.

Options:

A.

File Import activity

B.

Data Extract activity

C.

Data Extension Import activity

D.

File Transfer activity

Buy Now
Questions 49

A developer wants to create a JavaScript Web Token using a key from Key Management.

What function should the developer use?

Options:

A.

ContentBlockByKey()

B.

GetJWTByKeyName()

C.

RegExMatch()

D.

GeUWT()

Buy Now
Questions 50

Which statements are trueregarding the Marketing Cloud SOAP API? Choose 2.

Options:

A.

More than 2000 SOAP calls can be performed per minute.

B.

Most SOAP calls can be synchronous or asynchronous.

C.

Uses XML in request and response body.

D.

Uses JSON in request and response body.

Buy Now
Questions 51

A developer uses the messageDefinitionSends REST API endpoint to send a triggered send email. This method returns a 202 (success) response code. How could the developer validate if the email was successfully sent?

Options:

A.

Use the messageDefinitionSend/key:(key)/deliveryRecords REST endpoint with GET method

B.

The202 response code indicates the message was sent successfully; no further action is required.

C.

Use the validateEmail REST resource with POST method to obtain the email delivery details from the request.

D.

Confirm the record was successfully inserted into the associated Triggered Send Data Extension.

Buy Now
Questions 52

A developer needs to push real-time updates of the company's product catalog to a data extension.

Which two API options are available? Choose 2 answers

Options:

A.

Use the DataExtensionObject SOAP object

B.

Use the /hub/vl/aataevents REST route

C.

Use the DataExtension SOAP object

D.

Upload a file to the Enhanced SFTP for import

Buy Now
Questions 53

A developer wants to review the available properties for using the DataExtensionField SOAP API object.

Where could the developer find this information

Options:

A.

Open the Object Inspector in the Salesforce Developer Console

B.

Developer Center at https://developer.5alesforce.com

C.

Contact Support and request the information

Buy Now
Questions 54

A developer wantsto implement a newsletter registration from on NTO's website. Prior to form submission, an email address provided by the visitor should be validated. Which option could be used to support this scenario?

Options:

A.

REST API, /address/v1/validateEmail route

B.

SOAPAPI, Perform method with ValidationAction object

C.

SOAP API, Describe method with EmailAddress object

D.

REST API, /messaging/v1/domainverification route

Buy Now
Questions 55

Northern Trail Outfitters is using a mobile campaign to collect email addresses of interested subscribers. Using AMPScript'sAPI functions they will send a confirmation email when an email is texted into their short code.

Which two objects are required to successfully create a TriggeredSend object? Choose 2 answers

Options:

A.

Subscribers

B.

TriggeredSendDefinition

C.

Attribute

D.

Contact

Buy Now
Questions 56

A doctor's office creates Populations for staff, patients and vendors. What is the maximum number of Populations that should be created to ensure performance?

Options:

A.

Five

B.

Three

C.

Unlimited

D.

One

Buy Now
Questions 57

How can SSJS variables be referenced for content personalization? Choose 1.

Options:

A.

variableName

B.

C.

D.

Buy Now
Questions 58

How can subscriber, system, and sendable Data Extension attributes be referenced for content personalization using SSJS? Choose 1.

Options:

A.

B.

C.

D.

Buy Now
Exam Name: Salesforce Certified Marketing Cloud Developer (SP23)
Last Update: May 2, 2024
Questions: 195
Marketing-Cloud-Developer pdf

Marketing-Cloud-Developer PDF

$28  $80
Marketing-Cloud-Developer Engine

Marketing-Cloud-Developer Testing Engine

$33.25  $95
Marketing-Cloud-Developer PDF + Engine

Marketing-Cloud-Developer PDF + Testing Engine

$45.5  $130
tag

C.

Before the