Marketing-Cloud-Developer練習試験テスト最新問題2023年12月 [Q81-Q101]

Share

Marketing-Cloud-Developer練習試験テスト最新問題2023年12月

Marketing-Cloud-Developer試験を一発合格保証問題集!


Salesforce Marketing-Cloud-Developer認定は、マーケティングクラウドAPIと開発者ツールを使用して、カスタムソリューションと統合を構築する際の開発者の専門知識を検証する資格情報です。この認定は、Salesforce Marketing Cloudを使用してマーケティングソリューションの開発と実装の経験がある開発者向けに設計されています。認定試験では、マーケティングクラウドデータモデル、スクリプト言語、REST API、およびスケーラブルで効率的なソリューションを構築するためのベストプラクティスに関する開発者の知識をテストします。

 

質問 # 81
Which activity is required before a compressed file can be imported?

  • A. File Transfer
  • B. Import File
  • C. Data Extract
  • D. Decompress File

正解:A


質問 # 82
Northern Trails Outfitters is using REST API to send emails to customers after a purchase.
Which considerations should be taken regarding the token used in the API Call?

  • A. Make a token API call before each triggered send API call.
  • B. Make a token API call and re-use the token for that subscriber.
  • C. Make a token API call and re-use the token until the token expires.
  • D. Make a token API call and re-use the token until the next API call fails.

正解:C


質問 # 83
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. REST API using POST on the /data/v1/customobjectdata/ endpoint
  • C. Creating the data extension using API is not possible
  • D. SOAP API using Create Method and the DataExtension Object

正解:B


質問 # 84
Certification Aid wants to include SSJS in an email message. Which code block can be used for this? Choose
2.

  • A. <script runat=serverlanguage=javascript></script>
  • B. <script language=ssjs></script>
  • C. <script runat=server></script>
  • D. <script language=javascript></script>

正解:A、C


質問 # 85
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 = Add(@var1, Add(@var2, @var3))
  • B. SET @total = Add(@var1, @var2, @var3)
  • C. SET @total = Sum(@var1, @var2, @var3)
  • D. SET @total = @var1 + @var2 + @var3

正解:A


質問 # 86
A developer wants to use the RaiseError Ampscript function when a subscriber does not have the necessary data to build an email. Which two outcomes are possible using this function? Choose 2 answer

  • A. The send fails
  • B. An error message is sent to the From Address used in the email
  • C. The send is retried
  • D. The email is not sent to the particular subscriber

正解:A、D


質問 # 87
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. Using RaiseError AMPscript function when an error occours
  • B. Wrapping the code in a Server-Side JavaScript Try/Catch block
  • C. Marketing Cloud automatically handles any error scenario that may occur
  • D. Wrapping the code in a AMPscript HandleError block

正解:B


質問 # 88
A developer wants to create an HTML table where rows will alternate background colors between white and red.The developer does not know how many rows will be sent within each email, and decides to use a loop and assigns the RowCount() of the table rows to the variable @numerator. What is the recommended AMPscript logic to determine the background color of each table row within the loop?

  • A. %%[IF SUBSTRING(DIVIDE(@numerator,2),1) = 1 THEN SET @color = 'Red' ELSE SET @color =
    'White' ENDIF]%%
  • B. %%[IF MOD(@numerator,2) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
  • C. %%[IF DIVIDE(@numerator,2) =1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
  • D. %%[IF @numerator/2 = 1 THENSET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%

正解:C


質問 # 89
A developer uses the messageDefinitionSends REST API endpoint to send a triggered send email. This method returns a 202 (success) response code. How could the developer validate if the email was successfully sent?

  • A. The 202 response code indicates the message was sent successfully; no further action is required.
  • B. Use the messageDefinitionSend/key:(key)/deliveryRecords REST endpoint with GET method
  • C. Use the validateEmail REST resource with POST method to obtain the email delivery details from the request.
  • D. Confirm the record was successfully inserted into the associated Triggered Send Data Extension.

正解:B


質問 # 90
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 LookupOrderRows and Row functions
  • B. Use the DataExtensionRowCount function
  • C. Use the Lookup, Row and Field functions
  • D. Use the RowCount function and an IF statement

正解:D


質問 # 91
Which two ways would a developer write an Exclusion Script to exclude sending an email at send time when comparing against a Boolean field in the Sendable Data Extension?
Choose 2 answers

  • A. %%SendBoo1%%
  • B. %%=Lookup ('Excluded' , SendBoo1'. _Subscribekey'. _Subscribekey) =%%
  • C. %%SendBoo1 < 1
  • D. %%=Lookup ('Excluded' , SendBoo1'. Subscribekey'. _Subscribekey) =%%

正解:C、D


質問 # 92
A developer has a text field in a data extension they want to format using the FormatCurrency AMPscript function. Which two values would return $6.96? Choose 2

  • A. 6,961
  • B. 6.96
  • C. 6.96
  • D. $6.96

正解:B、D


質問 # 93
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. Include the functions BeginImpressionRegion and EndImpressionRegion
  • B. Add a unique identifier in the HTML tags within the generated content
  • C. Configure dynamic content block in Content Builder
  • D. Request the Impression Tracking feature be enabled on the account

正解:A、D


質問 # 94
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. Create PGP Key > Data Extract > File Transfer with PGP checked
  • C. Data from Marketing Cloud cannot be encrypted
  • D. Data Extract > File Transfer with Marketing Cloud Public Key

正解:B


質問 # 95
When appending data to links via Web Analytics Connector, which parameter should be used to track subscriber behavior?

  • A. Contact Key
  • B. Email Address
  • C. Subscriber Key
  • D. Subscriber ID

正解:D


質問 # 96
Which of the following statements are correct concerning Contacts and Subscribers? Choose 2.

  • A. A Contact is subscribed to any channel.
  • B. A Contact is subscribed to a specific channel.
  • C. Each Contact is also a Subscriber.
  • D. Each Subscriber is also a Contact.

正解:A、D


質問 # 97
A developer needs to determine why a Query Activity in an Automation has failed.
Which three scenarios could have caused this? Choose 3 answers

  • A. The query is returning more than one million rows.
  • B. The query is not returning a value for a non-nullable field.
  • C. The query takes more than 60 minutes to run.
  • D. The query is inserting a value that is larger than the size of a field.
  • E. The query results in duplicate rows not allowed by the primary key.

正解:B、C、D


質問 # 98
Certification Aid wants to import an encrypted CSV file from the Marketing Cloud Enhanced FTP server.
Which two File Transfer activities are needed to achieve this? Choose 2.

  • A. To decryptthe import file on the Enhanced FTP server.
  • B. To move the import file from the Enhanced FTP server to the Safehouse
  • C. To move the import file from the Safehouse to Marketing Cloud.
  • D. To decrypt the import file on the Safehouse.

正解:C、D


質問 # 99
A marketing director at Northern Trail Outfitters wants to analyze the Send, Click, and Open Data Views.
Which activities should the developerbuild to generate the data before transferring it to the SFTP?

  • A. Data Views Extract > Filter Activity
  • B. Query Activity > Data Extension Extract
  • C. Query Activity > Tracking Extract
  • D. Filter Activity > Data Extension Extract

正解:A


質問 # 100
A marketer is planning a weekly promotional send.
Which two types of data extensions could be sent to?
Choose 2 answers

  • A. Salesforce Data Extension
  • B. Sendable Data Extension
  • C. Synchronized Data Extension
  • D. Send Log Data Extension

正解:B、C


質問 # 101
......

Salesforce Developers無料認定試験材料はPassTestが提供された200問題:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-shiken.html

Marketing-Cloud-Developer問題集完全版問題試験学習ガイド:https://drive.google.com/open?id=1ZcphiUb7Q_yos1inuF70rig485Z04_kQ