Winter Sale - Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: dpm65

Hot Vendors

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

Questions 4

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 5

Certification Aid created following AMPscript code: %%[ SET @var1 = 10 SET @var2 = 20 SET @var3 = 30 ]%% How can the three variables be summed up to evaluate to 60? Choose 1.

Options:

A.

SET @total = Sum(@var1, @var2, @var3)

B.

SET @total = Add(@var1, Add(@var2, @var3))

C.

SET @total = Add(@var1, @var2, @var3)

D.

SET @total = @var1 + @var2 + @var3

Buy Now
Questions 6

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 7

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 8

An UpdateDE AMPscript function is used to update a column value in a data extension row when an email is sent. The emailis being sent to 250,000 subscribers, but the user decides to cancel the send during the sending process and only 400 emails are sent.

How many subscriber rows would be affected by the UpdateDE function?

Options:

A.

No rows are updated

B.

All 250,000 subscribers

C.

400 subscribers who were sent the email

D.

Only subscribers who exist in All Subscribers

Buy Now
Questions 9

A developer needs to display a value which hasbeen calculated using an AMPscript block. This value is stored in the variable named 'Label'.

Which two ways should the developer display this value in the body of an email? Choose 2 answers

Options:

A.

%%-v(@Label) -%%

B.

C.

%%@Label%%

D.

%%(Write (@Label1) 1%%

Buy Now
Questions 10

A developer is troubleshooting why a parent-level data extension cannot be accessed by a child business unit.

What should the developer check to validatethe data available can be accessed for child business unit queries?

Options:

A.

The data extension is in the Shared Data Extensions folder and the query includes the ENT. prefix

B.

The data extension is in the Shared Items root folder and is accessible to the child business unit

C.

The data extension is in the Salesforce Data Extensions folder and Is accessible to the child business unit

D.

The data extension is in the Synchronized Data Extensions folder and the query includes the ENT. prefix

Buy Now
Questions 11

Certification Aid sends an email to a newly imported List with Subscribers who have no associated Subscriber Key. Which value will become the Contact Key? Choose 1.

Options:

A.

ContactID

B.

Email address

C.

Subscriber ID

D.

Unique random number

Buy Now
Questions 12

A developer needs to identify all subscribers who were sent Job ID 420 but did not click any links. Which SQL statement would produce the desired results?

Options:

A.
B.
C.
D.
E.

Option A

F.

Option B

G.

Option C

Buy Now
Questions 13

A developer wants a link to be dynamic based on subscriber attributes. Rather than create numerous links, the developer uses AMPscript to set the link's value as a variable. The variable will be used within the tag. What should thedeveloper do within the tag to ensure clicks are tracked for the variable? Choose 2

Options:

A.

Wrap the variable in a RedirectTo function

B.

Ensure the Conversion attribute is 'true'

C.

Wrap the variable in a v function

D.

Include a variable for the Alias attribute

Buy Now
Questions 14

Landing pagescan use which SSJS library? 1. Core LibraryZ. Platform Library 3. SSJS Library

Options:

A.

Onlyl1 and 3

B.

Only1 ard2

C.

Only 2 and 3

D.

All 1,2 and 3

E.

None of these

Buy Now
Questions 15

A developer uses an API to send data to a Marketing Cloud data extension once every fiveminutes using the REST API. They notice data does not always write to the data extension, leading to data loss.

Which three best practices are recommended to avoid this issue? Choose 3 answers

Options:

A.

In case of 'Not Authorized' errors, request a new Access Token and attempt the call again.

B.

In case of Server errors, request a new Access Token before each request.

C.

In case of Server errors, ensure the Server is available and attempt the call again.

D.

Use Username and Password authentication instead of oAuth client ID and client secret.

E.

Store the expiry of the access token to ensure a new token is requested if the old one is invalid.

Buy Now
Questions 16

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 17

NTO is using an asynchronous SOAP API call to the TriggerSend object to send order confirmation email to their customers. Which API object and attribute should be used toretrieve the status of the API call?

Options:

A.

Result Object and EmailAddress

B.

Result Object and ConservationID

C.

ResultItem Object and OrderID

D.

ResultItem Object and RequestID

Buy Now
Questions 18

Northern Trail Outfitters (NTO) wants to determine the best identifier for subscribers across all channels.

What should be recommended5

Options:

A.

Contact Key

B.

Mobile ID

C.

Email Address

D.

Subscriber ID

Buy Now
Questions 19

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 20

NTO wants toexclude sends to specific subscribers based on a business rule, which is defined in an Exclusion Script. Which three types of sends would support this functionality? Choose 3

Options:

A.

Journey Builder Send Email Activity

B.

Content Builder Send Flow

C.

Send Marketing Cloud Email in Sales or Service Cloud

D.

Journey Builder Send SMS Activity

E.

Automation Studio Send Email Activity

Buy Now
Questions 21

A developer wants to create a data model in Contact Builder.

Which two applications will be able to use this newly-created data model for segmentation?

Choose 2 answers

Options:

A.

Email Studio

B.

Automation Studio

C.

Journey Builder

D.

Mobile Studio

Buy Now
Questions 22

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 23

A developer is creating a CloudPage which accepts secure parameters via an email link and will submit those parameters to another CloudPage for data upsert. The page currently captures an Appointment ID parameter passed into it and sets the value to the variable caapptld. The developer does NOT want the Appointment ID to be visible to anyone using the form.

What is the best method to ensure the parameters are passed successfully to the data upsert page?

Options:

A.

<input id="apptld" type="textarea" value»"%%«v(@>apptld)»%%" readonly>

B.

C.

D.

Buy Now
Questions 24

NTO is reconsidering the requirement to have English, Spanish and French versions of their email campaigns. They request a developer to create a query which aggregates clicks grouped by language of the recipient. Language is stored in a Profile Attribute. Which two Data Views would be included in the query? Choose 2 answer

Options:

A.

_Subscribers

B.

_Subscribers

C.

_AllSubscribers

D.

_Click

Buy Now
Questions 25

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 26

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 27

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
Questions 28

A customer wants a list of subscribers who were sent an email within the past 12 months.

How shouldthis request be completed?

Options:

A.

Create a measure with criteria sent_date is after today minus 565 days

B.

Run a tracking extract via the SOAP API

C.

Query against the Job and Sent data views

D.

Locate the email sends in the Tracking tab within Email Studio

Buy Now
Questions 29

A developer wants to extract tracking data from the Market Activity in the user interface.

Which option would be available to extract the data"?

Options:

A.

Automation Studio

B.

Journey Builder

C.

REST API

Buy Now
Questions 30

A developer wants to configure performance tracking of the content dynamically created via AMPscript in an email. Which two steps should be performed to achieve this objective? Choose 2

Options:

A.

Request theImpression Tracking feature be enabled on the account

B.

Include the functions BeginImpressionRegion and EndImpressionRegion

C.

Configure dynamic content block in Content Builder

D.

Add a unique identifier in the HTML tags within the generated content

Buy Now
Questions 31

A developer has a text field in a data extension they want to format using the FormatCurrency AMPscript function. Which two values would return $6.96? Choose 2

Options:

A.

6,961

B.

6.96

C.

$6.96

D.

6.96

Buy Now
Questions 32

A developer is configuring a new Marketing Cloud account and has decided touse a unique 10-digit integer as each customer's Contact Key.

Which data type should be used when representing the value of Contact Key?

Options:

A.

Number

B.

Decimal

C.

Text

Buy Now
Questions 33

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 34

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 35

A company needs to retrieve a large number of rows from a data extension via the API.

Which two solutions would optimize the performance?

Choose 2 answers

Options:

A.

Use the REST API instead of the SOAP API.

B.

Use the AMPscript API functions on a CloudPage.

C.

Use the ContinueRequest feature.

D.

Use a SimpleFilterPart to retrieve small sets of relevant data.

Buy Now
Questions 36

A developer identified duplicate contacts and wants to delete roughly 10 million subscribers usingContact Delete. How could the process be expedited?

Options:

A.

Change the Suppression value to a larger value

B.

Delete any unnecessary Sendable Data Extensions

C.

Manually delete subscribers in All Contacts

D.

Stop the current delete process and delete smaller groups

Buy Now
Questions 37

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 38

Northern Trails Outfitters (NTO) developers want to use the Transactional Messaging API to send email receipts to customers.

What is the first step required to send using the API?

Options:

A.

POST to /messaging/vl/email/messages/ with clientjd

B.

Request a token usingthe vl/requestToken endpoint

C.

Request a token using the v2/authorize endpoint

D.

POST to /messaging/vl with clientjd and client_secret

Buy Now
Questions 39

A developer wants to include an AMPscript if/else statement in an email to satisfy the condition "if the subscriber's tier is not premier then display heading encouraging them to upgrade." The tier value has already been set as variable named @level. How should the developer write this AMPscript conditional statement?

Options:

A.

%%[IF @level == 'premier' THEN SET @message = You are premier member

B.

" ENDIF IF @level == 'premier' THEN SET @message = 'Upgrade to premier now

C.

'" ENDIF]%% %%=v(message)=%%%%=IF(@level IS 'premier', Upgrade to premier now! You are a premier member%%=IIF(@level = 'premier', 'You are a premier member!', Upgrade to premier now!

D.

%%=IIF @level == premier, You are a premier member" Upgrade to premier now!

E.

%%IF(@level == 'premier') THEN 'Upgrade to premier now!' ELSE 'You are a premier member' ENDIF]%%

Buy Now
Questions 40

A developer wants to expand their knowledge of Query Activities. They want to identify email addresses that have bounced in the last 30 days, along with the Bounce Reason and some additional subscriber specificdata; however, the SQL they have written does not return any records. Below is the SQL statement:

Marketing-Cloud-Developer Question 40

What updates should be made to ensure this SQL statement returns the desired results?

Options:

A.

Marketing Cloud does not allow DateAdd functions in QueryActivities. They should define a specific date.

B.

Marketing Cloud _Bounce data view does not contain EmailAddress. They should join on SubscriberlD.

C.

Marketing Cloud Data Views only hold 20 days worth of data. They should narrow scope of DateAdd function.

D.

Marketing Cloud does not allow use of GETDATE function. They should define a specific date.

Buy Now
Questions 41

A developer needs to know how many records are contained in a particular data extension. This will dictate what is displayed on a landing page.

Which AMPscript functionreturns the number of rows in a specified data extension?

Options:

A.

LookupRowCount

B.

DataExtensionRowCount

C.

RowCount

Buy Now
Questions 42

A developer wants to set a variable to use a field from a Sendable Data Extension.

Which two options could be used in an AMPscript block to set the variable as a 'First Name" field from a Sendable Data Extension usedto send the email? Choose 2 answers

Options:

A.

SET @firstName = [First Name]

B.

SET @firstName = %%First Name%%

C.

SET @firstName = attributeValue (''First Name'')

D.

SET @firstName = ''First Name'']

Buy Now
Questions 43

Which aspect should a developer consider before creating an Server-to-Server Installed Package and associated API Integration i* Marketing Cloud?

Options:

A.

Using an Installed Package, APIs will have access to resources in all Business Units.

B.

Scope (Permissions) will be granted based on the User who is creating the Installed Package.

C.

Scope (Permissions) must be specifically granted when creating an API Integration component inside an Installed Package.

Buy Now
Questions 44

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 45

A developer needs to process a payload from an external system in a CloudPage.

What Marketing Cloud Server-Side JavaScript Platform function should be used for converting a string payload in JSON format to a JavaScript object?

Options:

A.

Base64Decode

B.

ParseJSON

C.

CreateObject

D.

Stringify

Buy Now
Questions 46

New subscribers at Northern Trail Outfitters (NTO) are added to a data extension. NTO would like to send these subscribers a welcome series with Journey Builder.

What would allow the data extension to be selected for journey entry'

Options:

A.

At least one Campaign must be associated to the data extension.

B.

The Triggered Send Template must be used to create the data extension.

C.

The data extension must be configured for sending.

D.

The data extension must contain a field of theEmailAddress data type.

Buy Now
Questions 47

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 48

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 49

A developer wants to personalize a welcome email with the recipient's first name from the Customers data extension, which is different from the targeted sending data extension named NewSubscribers. Both data extensionscontain the unique identifier in a field named CustomerKey. Which AMPscript Syntax would populate the first name personalization as requested?

Options:

A.

%%=Lookup('Customers', 'FirstName', 'ContactID', CustomerKey)=%%

B.

%%=Lookup('Customers', 'FirstName', 'CustomerKey', CustomerKey)=%%

C.

%%=Lookup('Customers','FirstName','CustomerKey', 'CustomerKey')=%%

D.

%%=Lookup('NewSubscribers','FirstName','ContactID',CustomerKey)=%%

Buy Now
Questions 50

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 51

NTO is using a mobile campaign to collect an email addresses of interested subscribers. Using AMPscript's API functions they will send a confirmation email when an email is texted into their short code. Which two objects are required tosuccessfully create a TriggerSend object? Choose 2

Options:

A.

Attribute

B.

TriggerSendDefinition

C.

Contact

D.

Subscribers

Buy Now
Questions 52

Northern Trails Outfitters (NTO)has a sendable data extension with 1,500,000 contact records they want to delete.

Which step is required before deleting the contacts?

Options:

A.

Query the records into a new sendable data extension and delete it

B.

Navigate to Contact Builder and delete the dataextension

C.

Divide the records in half and delete each resulting data extension

D.

Navigate to Email Studio and delete the data extension

Buy Now
Questions 53

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 54

Which action could the RaiseError AMPscript function be configured to perform?

Options:

A.

Delete the subscriber record

B.

Update the subscriber's status

C.

Log the source of theerror

Buy Now
Questions 55

A developer wants to upload a base64-encoded file to Content Builder using an API Installed Package but receives an insufficient Privileges error. What should the developer check to troubleshoot the error?

Options:

A.

Validate Client Id and Client Secret are correct

B.

Verify the Asset Type Id matches the Asset Type Name

C.

Confirm the REST Base URI uses the correct subdomain

D.

Confirm the Component's Channel options are available

Buy Now
Questions 56

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 57

A developer receives a request for tracking data for alt sends associated with a specific JoblD. The developer needs to see Sends, Opens, Clicks, and Bounces.

Which two activities could the developer use? Choose 2 answers

Options:

A.

Tracking Extract Activity

B.

Server-Side JavaScript Activity

C.

Campaign Data Extract

D.

SQL Query Activity

Buy Now
Questions 58

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
Exam Name: Salesforce Certified Marketing Cloud Developer (SU24)
Last Update: Nov 18, 2024
Questions: 195

PDF + Testing Engine

$56  $159.99

Testing Engine

$42  $119.99
buy now Marketing-Cloud-Developer testing engine

PDF (Q&A)

$35  $99.99
buy now Marketing-Cloud-Developer pdf
dumpsmate guaranteed to pass
24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 21 Nov 2024