ExamGecko
Ask Question

Salesforce Certified Marketing Cloud Developer Practice Test - Questions Answers, Page 4

List of questions

Question 31

Report
Export
Collapse

A developer wants to create a Synchronized Data Extension containing Lead data from Sales Cloud.

They only want to include record which contain a phone number. Each of the following flied contains this information per these rules: -Phone is not black (Data Type = Phone) -PhoneExist is true (Data Type = Boolean) -ValidPhone is 'true' (Data Type = Formula(Boolean)) -ContactType equals 'Phone' (Data Type = Text). Which field could be used to select a subset of records in the synchronization configuration?

ValidPhone
ValidPhone
Phone
Phone
ContactType
ContactType
PhoneExists
PhoneExists
Suggested answer: B
asked 23/09/2024
Willem Alves
28 questions

Question 32

Report
Export
Collapse

A developer receives a 401 Unathorized HTTP status message from a REST API request. What is thereason for this error?

The account lacks the privileges necessary to perform the request
The account lacks the privileges necessary to perform the request
The access token was not found in the request, or it is invalid or expired
The access token was not found in the request, or it is invalid or expired
OAuth is not supported for the requested resource
OAuth is not supported for the requested resource
API requests are temporarily blocked due to too many concurrent requests.
API requests are temporarily blocked due to too many concurrent requests.
Suggested answer: B
asked 23/09/2024
Brian Carlo Hubilla
36 questions

Question 33

Report
Export
Collapse

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?

Validate Client Id and Client Secret are correct
Validate Client Id and Client Secret are correct
Verify the Asset Type Id matches the Asset Type Name
Verify the Asset Type Id matches the Asset Type Name
Confirm the REST Base URI uses the correct subdomain
Confirm the REST Base URI uses the correct subdomain
Confirm the Component's Channel options are available
Confirm the Component's Channel options are available
Suggested answer: B
asked 23/09/2024
Michael Thornton
43 questions

Question 34

Report
Export
Collapse

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

%%=DataAdd(Date_Enrolled,-1)=%%
%%=DataAdd(Date_Enrolled,-1)=%%
%%=DateAdd(Date_Enrolled,-1 'H')=%%
%%=DateAdd(Date_Enrolled,-1 'H')=%%
%%=DateDiff(Date_Enrolled, 1, 'H')=%%
%%=DateDiff(Date_Enrolled, 1, 'H')=%%
%%=FormatDate(Date_Enrolled,-1,'HH','en-us')=%%
%%=FormatDate(Date_Enrolled,-1,'HH','en-us')=%%
Suggested answer: B
asked 23/09/2024
Charles Brono
45 questions

Question 35

Report
Export
Collapse

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

When changing routes/objects
When changing routes/objects
Before every new call
Before every new call
Once an hour
Once an hour
Every 15 minutes
Every 15 minutes
Suggested answer: D
asked 23/09/2024
Subhendu Bhattacharyya
36 questions

Question 36

Report
Export
Collapse

A developer wants to use the RaiseError Ampscript function when a subscriber does not have the necessary data to build an email. Which two outcomes are possible using this function? Choose 2 answer

The send fails
The send fails
The email is not sent to the particular subscriber
The email is not sent to the particular subscriber
An error message is sent to the From Address used in the email
An error message is sent to the From Address used in the email
The send is retried
The send is retried
Suggested answer: A, B
asked 23/09/2024
Henri Sanrame
35 questions

Question 37

Report
Export
Collapse

NTO uses data extensions to manage the subscriber information used for 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 using an 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?

The InsertDE function will always insert two rows into a data extension as part of the call
The InsertDE function will always insert two rows into a data extension as part of the call
The InsertDE function cannot be used with name and value pairs
The InsertDE function cannot be used with name and value pairs
The InsertDE function comes after the system added the row as part of the email send
The InsertDE function comes after the system added the row as part of the email send
The InsertDE function cannot be used at send time
The InsertDE function cannot be used at send time
Suggested answer: C
asked 23/09/2024
Adriano Costa
36 questions

Question 38

Report
Export
Collapse

A developer wants to delete a batch of subscribers from Marketing Cloud. The developer performs a Contact Delete on a batch of records in a data extension in Contact Builder. Which scenario would cause subscriber records to remain in the data extension?

Sendable data extension with SubscriberKey and EmailAddress fields
Sendable data extension with SubscriberKey and EmailAddress fields
Non-sendable data extension with SubscriberKey field
Non-sendable data extension with SubscriberKey field
Contact Delete process does not delete rows from data extensions
Contact Delete process does not delete rows from data extensions
Sendable data extension with SubsciberKey field
Sendable data extension with SubsciberKey field
Suggested answer: B
asked 23/09/2024
Zaccheri Brown
34 questions

Question 39

Report
Export
Collapse

NTO had an Enterprise 2.0 account; subscribers unsubscribes from the business unit only. A developer is identifying subscribers who unsubscribed from any of the NTO child business units.

Which method would identify the most accurate status for subscribers of each business unit?

Create Data Extract of all Subscribers within the Parent Business unit
Create Data Extract of all Subscribers within the Parent Business unit
Create Data Extracts of All Subscribers within each Child business unit
Create Data Extracts of All Subscribers within each Child business unit
Query unsubscriber from _Subscribers within the Parent business unit
Query unsubscriber from _Subscribers within the Parent business unit
Query status from _ListSusbscribers within the Parent business unit
Query status from _ListSusbscribers within the Parent business unit
Suggested answer: B
asked 23/09/2024
Gilbert Ciepluch
48 questions

Question 40

Report
Export
Collapse

A developer wants to create an HTML table where rows will alternate background colors between white and red. The developer does not know how many rows will be sent within each email, and decides to use a loop and assigns the RowCount() of the table rows to the variable @numerator.

What is the recommended AMPscript logic to determine the background color of each table row within the loop?

%%[IF DIVIDE(@numerator,2) =1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF DIVIDE(@numerator,2) =1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF SUBSTRING(DIVIDE(@numerator,2),1) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF SUBSTRING(DIVIDE(@numerator,2),1) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF @numerator/2 = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF @numerator/2 = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF MOD(@numerator,2) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
%%[IF MOD(@numerator,2) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
Suggested answer: A
asked 23/09/2024
John Gevers
26 questions
Total 197 questions
Go to page: of 20
Search

Related questions