
Salesforce Marketing-Cloud-Developer Exam Questions (Updated 2021) 100% Real Question Answers
Pass Salesforce Marketing-Cloud-Developer Exam Quickly With TopExamCollection
For more details visit:
Marketing Cloud Developer Exam Reference
NEW QUESTION 68
NTO is using an asyncrhonous SOAP API call to the TriggerSend object to send order confirmation email to their customers. Which API object and attribute should be used to retrieve the status of the API call?
- A. Result Object and ConservationID
- B. Result Object and EmailAddress
- C. ResultItem Object and RequestID
- D. ResultItem Object and OrderID
Answer: C
NEW QUESTION 69
A developer is creating a custom preference center and wants to log unsubscribe events from the CloudPage. Which set of parameters should be captured and provided to the LongUnsubEvent Execute Call to ensure accurate unsubscribe information?
- A. SubscriberKey and JobID
- B. SubscriberID and BatchID
- C. EmailAddress and JobID
- D. SubscriberKey and BatchID
Answer: A
NEW QUESTION 70
A developer wants a link to be dynamic based on subscriber attributes. Rather than create numerous links, the developer uses AMPscript to set the link's value as a variable. The variable will be used within the <a> tag. What should the developer do within the <a> tag to ensure clicks are tracked for the variable? Choose 2
- A. Wrap the variable in a v function
- B. Ensure the Conversion attribute is 'true'
- C. Wrap the variable in a RedirectTo function
- D. Include a variable for the Alias attribute
Answer: C
NEW QUESTION 71
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?
- A. Use the RowCount function and an IF statement
- B. Use the LookupOrderRows and Row functions
- C. Use the DataExtensionRowCount function
- D. Use the Lookup, Row and Field functions
Answer: A
NEW QUESTION 72
A developer wants to transform the date and time 'Data_Enrolled' from Daylight Savings time. How would the developer change the time to fall back one hour?
- A. %%=FormatDate(Date_Enrolled,-1,'HH','en-us')=%%
- B. %%=DataAdd(Date_Enrolled,-1)=%%
- C. %%=DateAdd(Date_Enrolled,-1 'H')=%%
- D. %%=DateDiff(Date_Enrolled, 1, 'H')=%%
Answer: C
NEW QUESTION 73
A developer wants to include an AMPscript if/else statement in an email to satisfy the condition "if the subscriber's tier is not premier then display heading encouraging them to upgrade." The tier value has already been set as variable named @level. How should the developer write this AMPscript conditional statement?
- A. %%=IIF @level == premier, You are a premier member" Upgrade to premier now!
- B. " ENDIF IF @level == 'premier' THEN SET @message = 'Upgrade to premier now
- C. %%IF(@level == 'premier') THEN 'Upgrade to premier now!' ELSE 'You are a premier member' ENDIF]%%
- D. %%[IF @level == 'premier' THEN SET @message = You are premier member
- E. '" ENDIF]%% %%=v(message)=%%%%=IF(@level IS 'premier', Upgrade to premier now! You are a premier member%%=IIF(@level = 'premier', 'You are a premier meber!', Upgrade to premier now!
Answer: E
NEW QUESTION 74
How can SSJS variables be referenced for content personalization? Choose 1.
- A. <ctrl:field name="variableName" />
- B. <ctrl:eval name="variableName" />
- C. <ctrl:eval>variableName</ctrl:eval>
- D. <ctrl:var name="variableName" />
Answer: D
NEW QUESTION 75
A developer wants CloudPages to work with a REST API returning data in JavaScript Object Notation. The developer wants to efficiently ingest the data and write it to a data extension.
Which function should be used?
- A. Server-Side 3avaScript function Stringify
- B. AMPscript function BuildRowsetFromXML
- C. AMPscript function BuildRowsetFromString
- D. Server-Side JavaScript function ParseJSON
Answer: A
NEW QUESTION 76
Northern Trail Outfitters uses a Send Log and sends more than one million emails per day. They want to execute daily reports on all subscriber activity without impacting send performance.
Which set of best practices should be implemented''
- A. Add a data retention policy to the Send Log. then run reports from the _Opens data view.
- B. Add a data retention policy to the Send Log. then run reports from the Send Log data extension.
- C. Copy new Send Log records to an Archive data extension, then run reports from the Archive data extension.
- D. Copy new Send Log records to an Archive data extension, then run reports from the Send Log data extension.
Answer: A
NEW QUESTION 77
A developer is managing the data model programmatically and needs to access Attribute Group schema via the API. Which API should the developer use?
- A. XML
- B. SOAP
- C. Bulk
- D. REST
Answer: D
NEW QUESTION 78
A particular data extension need to be configured to store six months of dat a. How should data retention be added to the data extension in Email Studio?
- A. Create a new data extension that includes data retention settings
- B. Run a query to overwrite the rows with six months of data
- C. Update the data extension configuration to include data retention settings.
- D. Import a file to overwrite the rows with six months of data
Answer: A
NEW QUESTION 79
A developer wants to delete a batch of subscribers from Marketing Cloud. The developer performs a Contact Delete on a batch of records in a data extension in Contact Builder. Which scenario would cause subscriber records to remain in the data extension?
- A. Sendable data extension with SubsciberKey field
- B. Contact Delete process does not delete rows from data extensions
- C. Sendable data extension with SubscriberKey and EmailAddress fields
- D. Non-sendable data extension with SubscriberKey field
Answer: D
NEW QUESTION 80
A developer receives a request to integrate Marketing Cloud with a lead capture tool. The lead capture tool will call the Marketing Cloud API to create a data extension every time a new lead form is published. The created data extension's name should match the name of the form exactly.
Which API feature could the developer use to dynamically create these data extensions?
- A. REST API using POST on the /interaction/v1/EventDefinitions endpoint with Schema populated
- B. SOAP API using Create Method and the DataExtension Object
- C. Creating the data extension using API is not possible
- D. REST API using POST on the /data/v1/customobjectdata/ endpoint
Answer: D
NEW QUESTION 81
A developer wants to build an audience by identifying subsceibers who opened a specific email. Which query should the developer use?
- A. SELECT * FROM _Open WHERE ListID = '1234'
- B. SELECT SubscriberKey FROM _Open WHERE JobID = '1234'
- C. SELECT SubscriberID FROM _Open WHERE JobID = "1234"
- D. SELECT * FROM _Open WHERE JobID = "1234"
Answer: B
NEW QUESTION 82
A developer wants to build an email that dynamically populates the physical address of a company's locations using the variable address. The deployment goes to millions of subscribers and the developer wants the fastest possible performance.
Which AMPscript solution should be recommended?
- A. %% [ SET @address - field(Row(LookupRows("Building_Locations", "Address","Id"), 1),"Address") ]%%
- B. %%[ SET @address = field(Lookcup("Building_Locations"/ "Address", "Id",@Id), "Address") ]%%
- C. %%; SET @address = LookupRows(Building_Locations", "Address", "Id") ]%%
- D. %: SET @address = Lookup(''Building_locations'', Address'', ''id''@id) ] %%
Answer: B
NEW QUESTION 83
A developer needs to configure a process that can store encrypted data from Marketing Cloud as a file on an external server. What steps should the developer take?
- A. Shield Platform Encryption is required for encrypted data export
- B. Data from Marketing Cloud cannot be encrypted
- C. Data Extract > File Transfer with Marketing Cloud Public Key
- D. Create PGP Key > Data Extract > File Transfer with PGP checked
Answer: C
NEW QUESTION 84
Certification Aid wants to update Contact data stored in a Data Extension using the REST API. What is required to achieve this? Choose 1.
- A. The Data Extension must be created in Email Studio.
- B. The Data Extension must be in a Population.
- C. The Data Extension must be in an Attribute Group.
- D. The Data Extension must be sendable.
Answer: B
NEW QUESTION 85
Certification Aid wants to add records to a Data Extension using the SOAP API. Which object can be used for this? Choose 1.
- A. DataExtensionObject object
- B. DataExtension object
- C. Subscriber object
- D. Attribute object
Answer: A
NEW QUESTION 86
How can subscriber, system, and sendable Data Extension attributes be referenced for content personalization using SSJS? Choose 1.
- A. <field name="attributeName" />
- B. <ctrl:attribute name="attributeName" />
- C. <ctrl:field name="attributeName" />
- D. <ctrl:var name="attributeName" />
Answer: C
NEW QUESTION 87
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. 0
- B. 1
- C. 2
- D. 3
Answer: C
NEW QUESTION 88
What parameter should a developer include to ensure the MobileConnect Contact is tied to the Email Contact when making a QueueMO call for an existing email subscriber?
- A. mobilenumbers
- B. subscribers
- C. phonenumbers
- D. emailaddress
Answer: A
NEW QUESTION 89
Certification Aid wants to implement a custom profile center using SOAP API. Which SOAP API methods are relevant to achieve this? Choose 2.
- A. Describe
- B. Configure
- C. Update
- D. Extract
Answer: A,C
NEW QUESTION 90
A developer identified a use case where atriggered send of an email is needed. The developer already successfully set up authentication with a Client ID and Client Secret has used them in several REST calls.
When the REST call is made, a "401 Unauthorized" error is returned. What is the first thing the developer should check?
- A. The email interaction has been started
- B. The automation permissions have been granted for the Client ID and ClientSecret within Installed Packages.
- C. The send permissions have been granted for the Client ID and Client Secret within Installed Packages.
- D. The email interaction has been published.
Answer: C
NEW QUESTION 91
A developer receives a 401 Unathorized HTTP status message from a REST API request. What is the reason for this error?
- A. The account lacks the privileges necessary to perform the request
- B. API requests are temporarily blocked due to too many concurrent requests.
- C. The access token was not found in the request, or it is invalid or expired
- D. OAuth is not supported for the requested resource
Answer: C
NEW QUESTION 92
......
Marketing Cloud Developer Certification Exam advantages below
- After completing the Salesforce Marketing Cloud Developer certification Candidate becomes a solid, well-rounded Salesforce Marketing Cloud Developer.
- If the Candidate has the desire to move up to a higher-paying position in an organization. This certification will help as always.
- When an organization hiring or promotion an employee, then the decision is made by human resources. Now while Candidate may have an IT background, they do their decisions in a way that takes into record many different factors. One thing is candidates have formal credentials, such as the Salesforce Marketing Cloud Developer.
- A candidate might have incredible IT skills. Employers that do the hiring need to make decisions based on limited information and as it always. When they view the official Salesforce Marketing Cloud Developer certification, they can be guaranteed that a candidate has achieved a certain level of competence.
Marketing Cloud Developer Certification Exam certified salary below
The average Salary of a Marketing Cloud Developer Certified Expert in
- India - 40,945 INR
- England - 7,924 POUND
- Europe - 9,380 EURO
- United State - 10,400 USD
Real Salesforce Marketing-Cloud-Developer Exam Questions [Updated 2021]: https://www.topexamcollection.com/Marketing-Cloud-Developer-vce-collection.html
Prepare Marketing-Cloud-Developer Question Answers - Marketing-Cloud-Developer Exam Dumps: https://drive.google.com/open?id=1-boORm2j5bhBVZg7boS7DhI5Fdz6YSrS

