ExamGecko
Home Home / Salesforce / Certified Marketing Cloud Developer

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

Question list
Search
Search

List of questions

Search

Related questions











Certification Aid created following AMPscript code: %%[ SET @var1 = 10 SET @var2 = 20 SET @var3 = 30 ]%% How can the three variables be summed up to evaluate to 60? Choose 1.

A.
SET @total = Sum(@var1, @var2, @var3)
A.
SET @total = Sum(@var1, @var2, @var3)
Answers
B.
SET @total = Add(@var1, Add(@var2, @var3))
B.
SET @total = Add(@var1, Add(@var2, @var3))
Answers
C.
SET @total = Add(@var1, @var2, @var3)
C.
SET @total = Add(@var1, @var2, @var3)
Answers
D.
SET @total = @var1 + @var2 + @var3
D.
SET @total = @var1 + @var2 + @var3
Answers
Suggested answer: B

Certification Aid wants to automate the import of zipped files into a Data Extension. The zip files are placed on the Marketing Cloud Enhanced FTP server every night. Which activity is needed before those files can be imported? Choose 1.

A.
File Import activity
A.
File Import activity
Answers
B.
Data Extract activity
B.
Data Extract activity
Answers
C.
Data Extension Import activity
C.
Data Extension Import activity
Answers
D.
File Transfer activity
D.
File Transfer activity
Answers
Suggested answer: D

Northtrn Trail Outfitters has set up their North American business unit to unsubscribe at the business unit level.

Which dataview would they query to identify all subscribers who are unsubscribed from that Business Unit?

A.
ListSubscribers
A.
ListSubscribers
Answers
B.
ENT._Subscribers
B.
ENT._Subscribers
Answers
C.
_BusinessUnitUnsubscribes
C.
_BusinessUnitUnsubscribes
Answers
D.
.Subscribers
D.
.Subscribers
Answers
Suggested answer: C

Northtrn Trail Outfitters (NTO) wants to import a data file. It will be uploaded at regular intervals to their Enhanced FTP Account where an automation will import the file Into a data extension. NTO requires the file to be encrypted.

Which two file encryption options are supported when importing data files to Marketing Cloud?

Choose 2 answers

A.
PGP encryption
A.
PGP encryption
Answers
B.
RSA encryption
B.
RSA encryption
Answers
C.
GPG encryption
C.
GPG encryption
Answers
D.
AES encryption
D.
AES encryption
Answers
Suggested answer: A, C

A developer wants to create a data model in Contact Builder.

Which two applications will be able to use this newly-created data model for segmentation?

Choose 2 answers

A.
Email Studio
A.
Email Studio
Answers
B.
Automation Studio
B.
Automation Studio
Answers
C.
Journey Builder
C.
Journey Builder
Answers
D.
Mobile Studio
D.
Mobile Studio
Answers
Suggested answer: A, B

Northtrn Trail Outfitters mistakenly synced the User_Salesforce object which added to their billable contact count.

What should be recommended to remove these contacts'

A.
Update the sync to remove these contacts from the All Contacts table.
A.
Update the sync to remove these contacts from the All Contacts table.
Answers
B.
Use the REST API to delete the contacts from the All Subscribers table.
B.
Use the REST API to delete the contacts from the All Subscribers table.
Answers
C.
Put the synced records into a sendable data extension and use Contact Delete.
C.
Put the synced records into a sendable data extension and use Contact Delete.
Answers
D.
Use the SOAP API to delete the contacts from the All Contacts table.
D.
Use the SOAP API to delete the contacts from the All Contacts table.
Answers
Suggested answer: C

A developer is creating a CloudPage which accepts secure parameters via an email link and will submit those parameters to another CloudPage for data upsert. The page currently captures an Appointment ID parameter passed into it and sets the value to the variable caapptld. The developer does NOT want the Appointment ID to be visible to anyone using the form.

What is the best method to ensure the parameters are passed successfully to the data upsert page?

A.
<input id="apptld" type="textarea" value»"%%«v(@>apptld)»%%" readonly>
A.
<input id="apptld" type="textarea" value»"%%«v(@>apptld)»%%" readonly>
Answers
B.
<form action="%%=MicrositeURL(123,,apptId",@apptId)a%%" method="post">
B.
<form action="%%=MicrositeURL(123,,apptId",@apptId)a%%" method="post">
Answers
C.
<form action«"%%»CloudPagesURL(123,'apptId',@apptId)«%%" methods "post">
C.
<form action«"%%»CloudPagesURL(123,'apptId',@apptId)«%%" methods "post">
Answers
D.
<lnput ld=MapptId" type="textarea" value="%%«v(@apptld)«%%" hldden>
D.
<lnput ld=MapptId" type="textarea" value="%%«v(@apptld)«%%" hldden>
Answers
Suggested answer: C

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')
A.
LookupRows ('Ent. Inventory*, 'true', 'InStock')
Answers
B.
LookupRows ('Ent. Inventory*, itemName, 'InStock', 'true')
B.
LookupRows ('Ent. Inventory*, itemName, 'InStock', 'true')
Answers
C.
LookupRows ('Ent. Inventory*, 'InStock', 'true', )
C.
LookupRows ('Ent. Inventory*, 'InStock', 'true', )
Answers
D.
LookupRows ('Inventory*, 'InStock' 'true',)
D.
LookupRows ('Inventory*, 'InStock' 'true',)
Answers
Suggested answer: C

Northern Trail Outfitters' account is configured with two child BU(s): US and Global. The account has a data extension In the Shared Data Extensions folder named 'MemberData'. This data extension contains basic address information, as well as Boolean fields labeled 'US' and 'Global' indicating to which business unit the subscriber belongs. Automation needs to be created in the US business unit to query all records in New York who are members of the business unit US.

SELECT * FROM MemberData WHERE State = 'NY' AND US = 1 What would cause this query to report the following error: "An error occurred while checking the query syntax. Errors: MemberData is not a known data extension or system data view. You can only query existing data extensions or system data views."?

A.
Incorrect syntax; Query Activities are written in SOQL
A.
Incorrect syntax; Query Activities are written in SOQL
Answers
B.
MemberData should be prefixed with ENT
B.
MemberData should be prefixed with ENT
Answers
C.
Query should check for a US value of True'
C.
Query should check for a US value of True'
Answers
D.
Query Activities cannot use the " wildcard
D.
Query Activities cannot use the " wildcard
Answers
Suggested answer: B

A developer wants to populate a data extension with information about all emails deployed in the last seven days. The data extension needs to contain JobID, EventDate, and the counts of how many emails were sent with each JobID.

Which data view is required to gather this information?

A.
Job
A.
Job
Answers
B.
Sent
B.
Sent
Answers
C.
Journey
C.
Journey
Answers
D.
Subscribers
D.
Subscribers
Answers
Suggested answer: B
Total 197 questions
Go to page: of 20