
[2024年08月16日] 合格させるSalesforce Marketing-Cloud-Developer試験情報と無料練習テスト
Marketing-Cloud-Developer試験問題集PDF更新された問題集にはPassTest試験合格保証付き
Salesforce Marketing Cloud Developer認定試験は、マーケティングクラウドソリューションの開発に経験がある開発者を対象としています。この認定の対象となるには、候補者はマーケティングクラウドの概念を強く理解し、マーケティングクラウドAPIとスクリプト言語を使用したカスタムソリューションの開発に経験がある必要があります。さらに、候補者は、マーケティングクラウドコネクタと統合の操作の経験が必要です。
質問 # 96
What is the operational order of the Contact Delete process for Marketing Cloud?
- A. Delete initiated > Final deletion >Suppression phase
- B. Delete initiated > Suppression phase > Final Deletion
- C. Delete initiated > Final deletion
- D. Data identified > Suppression phase > Delete initiated > Account page
正解:B
質問 # 97
Northern Trail Outfitters (NTO) wants to determine the best identifier for subscribers across all channels.
What should be recommended5
- A. Contact Key
- B. Email Address
- C. Mobile ID
- D. Subscriber ID
正解:A
質問 # 98
A developer created an email with AMPscript variable as the subject line. The subject line variable was recently updated, but when testing the email, the wrong subject line continues to appear in the inbox. The developer thinks another, outdated, subject line variable is declared within the email. Where could the outdated variable be located?
- A. In the Text body which is processed after the HTML body
- B. In the HTML body which is processed after the subject line
- C. In the HTML body which is processed after the Text body
- D. In the Text body which is processed after the subject line
正解:A
質問 # 99
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 = LookupRows(Building_Locations", "Address", "Id") ]%%
- B. %%[ SET @address = field(Lookcup("Building_Locations"/ "Address", "Id",@Id), "Address") ]%%
- C. %% [ SET @address - field(Row(LookupRows("Building_Locations", "Address","Id"), 1),"Address") ]%%
- D. %: SET @address = Lookup(''Building_locations'', Address'', ''id''@id) ] %%
正解:B
質問 # 100
NTO is using an asynchronous 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 OrderID
- D. ResultItem Object and RequestID
正解:D
質問 # 101
NTO wants to exclude sending an email at send time to those with a record on the 'Exclude' Data Extension.
The primary key on this data extension is Subscriber Key. How would a developer write the Exclusion Script?
- A. Rowcount (LookupRows('Exclude','SubscriberKey,_SubscriberKey) >1
- B. Lookup ('Exclude','SubscriberKey', 'EmailAddress', emailddr_)
- C. Rowcount (LookupRows('Exclude',SubsciberKey,_SubscriberKey) >0
- D. Lookup ('Exclude','EmailAddress','SubscriberKey',SubscriberKey)
正解:C
質問 # 102
A developer wants to retrieve a row of data from a data extension using the SOAP API. Which API Object should be used for this call?
- A. DataExtensionField
- B. DataExtensionObject
- C. DataExtension
- D. Row
正解:B
質問 # 103
A developer wants to programmatically inject Contacts into a journey via REST API. What is the recommended route using POST data extension fields and values?
- A. /interaction/v1/events
- B. /interaction/v1/eventDefinitions
- C. /interaction/v1/interactions
- D. /contacts/v1/contactEvents
正解:A
質問 # 104
A developer wants to design a custom subscription center in CloudPages.The developer prefers to code in AMPscript, but is also skilled in Server-Side JavaScript. While the developer is confident their code is of high quality, they would still like to handle unexprected errors gracefully to ensure the best user experience. Which feature should handle this scenario?
- A. Wrapping the code in a Server-Side JavaScript Try/Catch block
- B. Marketing Cloud automatically handles any error scenario that may occur
- C. Wrapping thecode in a AMPscript HandleError block
- D. Using RaiseError AMPscript function when an error occurs
正解:A
質問 # 105
How can SSJS variables be referenced for content personalization? Choose 1.
- A. <ctrl:eval name="variableName" />
- B. <ctrl:field name="variableName" />
- C. <ctrl:eval>variableName</ctrl:eval>
- D. <ctrl:var name="variableName" />
正解:D
質問 # 106
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. Data Extension Import activity
- B. File Import activity
- C. Data Extract activity
- D. File Transfer activity
正解:D
質問 # 107
A developer wants to configure performance tracking of the content dynamically created via AMPscript in an email. Which two steps should be performed to achieve this objective? Choose 2
- A. Add a unique identifier in the HTML tags within the generated content
- B. Include the functions BeginImpressionRegion and EndImpressionRegion
- C. Request the Impression Tracking feature be enabled on the account
- D. Configure dynamic content block in Content Builder
正解:B、C
質問 # 108
A developer wants to populate a data extension with the date of the most recent click for each subscriber. Which query would accomplish this?
- A. SELECT c.SubscriberKey, MIN (c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
- B. SELECT c.SubscriberKey, c.eventDate FROM _Click c WHERE c.IsUnique = 1
- C. SELECT c.SubscriberKey, MAX(c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
- D. SELECT TOP 1 c.SubscriberKey, c.eventDate FROM _Click c ORDER BY c.eventDate DESC
正解:C
質問 # 109
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*, 'InStock', 'true', )
- B. LookupRows ('Ent. Inventory*, 'true', 'InStock')
- C. LookupRows ('Ent. Inventory*, itemName, 'InStock', 'true')
- D. LookupRows ('Inventory*, 'InStock' 'true',)
正解:A
質問 # 110
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 DataExtensionRowCount function
- B. Use the LookupOrderRows and Row functions
- C. Use the Lookup, Row and Field functions
- D. Use the RowCount function and an IF statement
正解:D
質問 # 111
A developer is creating a custom preference center and wants to log unsubscribeevents 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 BatchID
- B. SubscriberKey and JobID
- C. EmailAddress and JobID
- D. SubscriberID and BatchID
正解:B
質問 # 112
A developer is implementing a custom profile center and using the LogUnsubEvent request. Which parameter is required for the event to be tied to the appropriate send?
- A. SubscriberKey
- B. JobID
- C. Unsub Reason
- D. ListID
正解:B
質問 # 113
A developer wants to create an AMPscript FOR loop that populates HTML table rows based on the number of rows and data in a target DE. Where should the developer place the FOR keyword to begin the loop?
- A. Before the <td> tag
- B. Before the <tr> tag
- C. Before the <table> tag
- D. Before the <tbody> tag
正解:B
質問 # 114
A developer needs to configure an Email Send Logging Data Extension for a new business unit. Which option should be used?
- A. Salesforce Support should create the data extension
- B. Create using the SendLog Data Extension Template
- C. Create and ensure it has the name "Send Log"
- D. Create from a copy of an existing Send Log in another business unit
正解:B
質問 # 115
A developer needs to push real-time updates of the company's product catalog to a data extension.
Which two API options are available? Choose 2 answers
- A. Use the DataExtensionObject SOAP object
- B. Use the /hub/vl/aataevents REST route
- C. Use the DataExtension SOAP object
- D. Upload a file to the Enhanced SFTP for import
正解:A、B
質問 # 116
......
Salesforce Marketing-Cloud-Developer認定試験に合格すると、候補者はマーケティングクラウドテクノロジーの専門知識を検証するデジタルバッジを受け取ります。この認定は、専門家がキャリアを進め、マーケティングオートメーションの分野で新しい雇用機会を開くのに役立ちます。
あなたを合格させるSalesforce試験にはMarketing-Cloud-Developer試験問題集:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-shiken.html
Marketing-Cloud-Developer試験問題集でSalesforce練習テスト問題:https://drive.google.com/open?id=1p9PbAJTVwBrRtVzDFNTnWk_ECGMtnPtI