Salesforce Certified Marketing Cloud Developer Exam

Page:    1 / 13   
Total 65 questions

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 AMPscript logic should be used to determine the background color of each table row within the loop?

  • A. %%[ IF MOD(@numerator,2) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF ]%%
  • B. %%[ IF SUBSTRING(DIVIDE(@numerator,2),l) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF ]%%
  • C. %%[ IF @numerator/2 = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF ]%%


Answer : A

A developer is troubleshooting why an API client_id and client_secret are authenticating yet failing to access data from a child business unit.
What should be checked to validate the installed package can access the child business unit data?

  • A. The account_id and parent MID are included in the authorization call
  • B. The Installed Package has access to the selected child business unit
  • C. The Installed Package has full Enterprise access to all available child business units


Answer : B

Northern Trail Outfitters wants to trigger a receipt email via the SOAP API whenever a customer makes a purchase. Their developer wrote the call using the TriggeredSendDefinition object and the Create method, but no emails have been sent during his initial testing.
Which object and method should the developer use?

  • A. TriggeredSendDefinition object and Update method
  • B. TriggeredSend object and Create method
  • C. TriggeredSend object and Update method


Answer : B

A developer wants to use the RaiseError AMPscript function when a subscriber does not have the necessary data to build an email.
Which outcome is possible using this function?

  • A. The email is not sent to the particular subscriber.
  • B. An error message is sent to the From Address used in the email.
  • C. The send is retried


Answer : A

A developer created an email using the @subjectLine variable as the subject line. Due to revisions, the developer declared @subjectLine in multiple locations throughout the email, including:
• %%[ SET @subjectLine = 'Enjoy 10% off today' ] %% was declared at the top of the HTML body
• %%[ SET @subjectLine = 'Enjoy 15% off today' ]%% was declared in the top of the Text body
• %%[ SET @subjectLine = 'Enjoy 5% off today' ] %% was declared at the bottom of the HTML body
• %%[ SET @subjectLine = 'Enjoy 20% off today' ]%% was declared within the Subject Line
Which subject line will be used at the time of deployment?

  • A. Enjoy 10% off today
  • B. Enjoy 20% off today
  • C. Enjoy 15% off today


Answer : B

Page:    1 / 13   
Total 65 questions