Salesforce Certified Marketing Cloud Developer Exam Practice Questions (P. 1)
- Full Access (130 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #1
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?
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 ]%%
send
light_mode
delete
Question #2
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?
What should be checked to validate the installed package can access the child business unit data?
- AThe account_id and parent MID are included in the authorization call
- BThe Installed Package has access to the selected child business unit
- CThe Installed Package has full Enterprise access to all available child business units
send
light_mode
delete
Question #3
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?
Which object and method should the developer use?
- ATriggeredSendDefinition object and Update method
- BTriggeredSend object and Create method
- CTriggeredSend object and Update method
send
light_mode
delete
Question #4
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?
Which outcome is possible using this function?
- AThe email is not sent to the particular subscriber.
- BAn error message is sent to the From Address used in the email.
- CThe send is retried
send
light_mode
delete
Question #5
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?
• %%[ 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?
send
light_mode
delete
All Pages