Available in 1, 3, 6 and 12 Months Free Updates Plans
PDF: $15 $60

Test Engine: $20 $80

PDF + Engine: $25 $99

Marketing-Cloud-Developer Practice Test


Page 6 out of 40 Pages

Northern Trail Outfitters has an Enterprise 2.0 account with 15 business units. Each business unit can access a Shared Data Extension named 'Inventory', which contains the details for each product. A Boolean field named 'InStock' indicates whether the item is available. Which snippet of AMPscript would return all products which are currently available?


A. LookupRows ('Ent. Inventory*, 'true', 'InStock')


B. LookupRows ('Ent. Inventory*, itemName, 'InStock', 'true')


C. LookupRows ('Ent. Inventory*, 'InStock', 'true', )


D. LookupRows ('Inventory*, 'InStock' 'true',)





C.
  LookupRows ('Ent. Inventory*, 'InStock', 'true', )

Explanation:

The LookupRows function retrieves rows from a data extension where specified criteria are met. In an Enterprise 2.0 account, the data extension name in shared data extensions should be prefixed with 'Ent.' to indicate it is in the shared space.

Example:

SET @rows = LookupRows('Ent. Inventory', 'InStock', 'true') [: Salesforce AMPscript LookupRows Function, , ]

A developer wants to create a CloudPage which is linked from an email. %%[SET @point = RequestParameter(x) SET @value = 5 IF Length(@point) > 1 THEN SET @value = 1 ELSEIF Length(@point)>2 THEN SET @value = 2 ELSEIF Length(@point) >3 THEN SET@value = 3 ELSEIF Length(@point) >4 THEN SET @value = 4 ENDIF]%% Which is the expected value of @value if x = 'Tacos'?


A. 3


B. 1


C. 5


D. 4





B.
  1

Explanation:

In the provided AMPscript, the IF statement checks the length of the @point variable and sets @value accordingly. Since x = 'Tacos' has a length of 5, it meets the first condition Length(@point) > 1, which sets @value to 1. Subsequent conditions are not evaluated because the first condition is already true.

AMPscript IF-ELSEIF Example:

%%[ SET @point = RequestParameter('x') SET @value = 5 IF Length(@point) > 1 THEN SET @value = 1 ELSEIF Length(@point) > 2 THEN SET @value = 2 ELSEIF Length(@point) > 3 THEN SET @value = 3 ELSEIF Length(@point) > 4 THEN SET @value = 4 ENDIF ]%%

[: Salesforce AMPscript Documentation, , , ]

Which statements are trueregarding the Marketing Cloud SOAP API? Choose 2.


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.





B.
  Most SOAP calls can be synchronous or asynchronous

C.
  Uses XML in request and response body.

Explanation:

Regarding the Marketing Cloud SOAP API, the following statements are true:

Most SOAP calls can be synchronous or asynchronous (B) - This means that API calls can either wait for the operation to complete (synchronous) or proceed with other tasks while waiting for the response (asynchronous).

Uses XML in request and response body (C) - The SOAP API utilizes XML for both requests and responses, providing a standardized format for data interchange.

References:

Salesforce Marketing Cloud SOAP API Overview

Salesforce SOAP API Developer Guide

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


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.





A.
  The data in the data extensions used at the time of send was overwritten.


Northern Trail Outfitters (NTO) stores most of their customer data in Marketing Cloud. They do not mind their data being viewed in clear text within SFMC to users who have access, but they want to ensure the underlying database files are encrypted at rest in case the physical media is stolen. Which encryption method should NTO use?


A. Encrypted Data Sending


B. Field-Level Encryption


C. Tokenized Sending


D. Transparent Data Encryption





D.
  Transparent Data Encryption

Explanation:

Transparent Data Encryption (TDE) is the appropriate method for ensuring that the underlying database files are encrypted at rest. TDE encrypts the database files themselves, protecting the data in case the physical media is stolen, while allowing the data to be viewed in clear text by authorized users within the system.

Transparent Data Encryption: Encrypts data at rest, ensuring that the database files are secure.

[: Salesforce Transparent Data Encryption, , ]


Page 6 out of 40 Pages
Previous