Salesforce Certified Marketing Cloud Engagement Developer MCE-Dev-201 Exam Questions

Page: 1 / 14
Total 196 questions
Question 1

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?



Answer : A

In the SOAP API response, the element that provides detailed information about the error, including missing required data extension fields, is ErrorDescription (A). This element contains a description of the error, helping developers understand and resolve the issue.


Salesforce Marketing Cloud SOAP API

SOAP API Error Handling

Question 2

A developer is configuring a File Drop Automation and wantsto use a Filename Pattern to allow for timestamps on the file. The file name will always start with the month and day (e.g. MAY15) the file is dropped onto the SFTP site.

Which two configurations should be used for the automation to successfully start? Choose 2 answers



Answer : C, D

To configure a File Drop Automation with a filename pattern that allows for timestamps and starts with the month and day, the developer should use:

Begins With operator (D) - This ensures that the automation triggers when the file name begins with the specified pattern.

%%Month%%%%Day%% (C) - This is the correct syntax to match the month and day in the file name. For example, if the file name is 'MAY15', the pattern will be %%MMMM%%dd.


Salesforce Marketing Cloud File Drop Automations

Automation Studio Filename Patterns

Question 3

A developer needs to add From Addresses to Marketing Cloud and wants to ensure they are verified before being used for sending.

Which tworoutes would allow this?

Choose 2 answers



Answer : A, B

To add and verify From Addresses in Marketing Cloud, you can use the following routes:

POST /messaging/v1/domainverification: This endpoint is used to verify a single domain.

POST /messaging/v1/domainverification/bulk/insert: This endpoint is used to verify multiple domains in bulk.

: Salesforce Domain Verification API


Question 4

What is the purpose of the IF statement below?



Answer : A

The purpose of the IF statement in the AMPscript code is to check if any rows are returned by the LookupRows function. If rows are returned, it retrieves the image field from the data extension and sets the image source accordingly. If no rows are returned, it defaults to using a standard image.

: Salesforce AMPscript LookupRows Function


Question 5

A developer created a landing page in CloudPages which return unique content when subscriber data is located on a related data extension. The developer does not know if all subscribers have rows in the related data extension, and want default content to render if no subscriber data is found on the related data extension. Which best practice should the developer follow to control the unique and default content?



Answer : A

To control the rendering of unique and default content based on the presence of subscriber data in a related data extension, the best practice is to use the RowCount function and an IF statement:

%%[ VAR @rowCount SET @rowCount = RowCount(LookupRows('RelatedDataExtension', 'SubscriberKey', _subscriberKey)) IF @rowCount > 0 THEN /* Render unique content */ ELSE /* Render default content */ ENDIF ]%%

This approach checks if there are any rows in the related data extension for the subscriber and conditionally renders the appropriate content.


AMPscript Guide

Salesforce Marketing Cloud Documentation

Question 6

An email requires custom AMPscript to append the subscriber's zip code to a link in theemail. A field name zipcode already exist in the sending data extension. Its important Marketing Cloud tracks subscribers who click on the link. Which two AMPscript functions should be used in the setup? Choose



Answer : A, C

To append the subscriber's zip code to a link and ensure that the clicks are tracked, you should use the Lookup function to retrieve the zip code from the data extension and the RedirectTo function to create the link with tracking enabled.

Lookup: Retrieves the zip code from the data extension.

RedirectTo: Ensures that the link with the appended zip code is tracked.

Example:

ampscript

Copy code

%%[ SET @zipcode = Lookup('DataExtensionName', 'zipcode', 'SubscriberKey', _subscriberkey) SET @link = Concat('http://example.com?zip=', @zipcode) ]%% Click Here

:

Salesforce AMPscript Lookup Function

Salesforce AMPscript RedirectTo Function


Question 7

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?



Answer : A

When receiving an 'insufficient Privileges' error while attempting to upload a base64-encoded file to Content Builder using an API Installed Package, the developer should validate the Client Id and Client Secret are correct. These credentials are necessary for authentication and authorization when interacting with Salesforce Marketing Cloud APIs.


Salesforce Marketing Cloud API Authentication

Salesforce Marketing Cloud Content Builder API

Page:    1 / 14   
Total 196 questions