無料で使えるMarketing-Cloud-Developer試験ブレーン問題集認定ガイド問題と解答 [Q44-Q66]

Share

無料で使えるMarketing-Cloud-Developer試験ブレーン問題集認定ガイド問題と解答

Marketing-Cloud-Developer認定概要最新のMarketing-Cloud-DeveloperのPDF問題集


Salesforce Marketing-Cloud-Developer認定試験に合格すると、候補者はマーケティングクラウドテクノロジーの専門知識を検証するデジタルバッジを受け取ります。この認定は、専門家がキャリアを進め、マーケティングオートメーションの分野で新しい雇用機会を開くのに役立ちます。


Salesforce Marketing Cloudは、マーケティング担当者がさまざまなチャネルで顧客の旅を作成および管理するための強力なツールです。 Salesforce Marketing-Cloud-Developer認定は、マーケティングクラウドを専門とする開発者向けに設計されています。この認定試験は、マーケティングクラウドソリューションの開発と展開の経験がある人と、マーケティングクラウドプラットフォームの深い理解に最適です。


Salesforce Marketing-Cloud-Developer 認定試験は、データモデリング、データ管理、自動化、個人化、統合など、幅広いトピックがカバーされます。この試験には、複数の選択肢問題が含まれており、Salesforce Marketing Cloud に関連するさまざまな概念に関する候補者の知識と理解をテストするように設計されています。試験には、マーケティングクラウドソリューションを開発する能力を証明するコーディングチャレンジを完了する必要がある実用的なコンポーネントも含まれます。

 

質問 # 44
How can subscriber, system, and sendable Data Extension attributes be referenced for content personalization using SSJS? Choose 1.

  • A. <field name="attributeName" />
  • B. <ctrl:var name="attributeName" />
  • C. <ctrl:field name="attributeName" />
  • D. <ctrl:attribute name="attributeName" />

正解:C


質問 # 45
A developer needs to import a file into a data extension which contains transactional dat a. The file includes a column labeled Purchase_Price with values varying from '$.05' to '$100'.
What Data Type should be used to prevent loss of data'

  • A. Text
  • B. Decimal(9,2)
  • C. Number

正解:B

解説:
The best Data Type to use for the Purchase_Price column would be Decimal(9,2). This will allow values ranging from .05 to 100 without any data loss.


質問 # 46
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. AMPscript function BuildRowsetFromXML
  • B. AMPscript function BuildRowsetFromString
  • C. Server-Side JavaScript function ParseJSON
  • D. Server-Side 3avaScript function Stringify

正解:D


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

正解:D


質問 # 48
Certification Aid wants to add new customers to a cross-channel welcome campaign when they register on the company website. Which API should be used for this? Choose 1.

  • A. Transactional Messaging API
  • B. Journey Builder API
  • C. Event Notification API
  • D. Personalization Builder API

正解:A


質問 # 49
Which statements are true regarding the Marketing Cloud SOAP API? Choose 2.

  • A. Uses XML in request and response body.
  • B. Uses JSON in request and response body.
  • C. More than 2000 SOAP calls can be performed per minute.
  • D. Most SOAP calls can be synchronous or asynchronous.

正解:A、D


質問 # 50
NTO puts the word TEST at the beginning of the name for each test emai. Which query would return the subs who were sent those emails?

  • A. SELECT * FROM _Job J INNER JOIN _Sent S on J.JobID = JobID = S.JobID WHERE J.EmailName = 'TEST%'
  • B. SELECT * FROM _Job INNER JOIN _Sent on JobID = JobID WHERE EmailName LIKE 'TEST%'
  • C. SELECT * FROM _Job J INNER JOIN _Sent S on J.EmailName LIKE 'TEST%'
  • D. SELECT * FROM _Job J INNER JOIN _Sent S ON.JobID = S.JobID WHERE J.EmailName LIKE 'TEST%'

正解:D


質問 # 51
A developer wants to build an audience by identifying subscribers who opened a specific email. Which query should the developer use?

  • A. SELECT * FROM _Open WHERE JobID = "1234"
  • B. SELECT SubscriberKey FROM _Open WHERE JobID = '1234'
  • C. SELECT * FROM _Open WHERE ListID = '1234'
  • D. SELECT SubscriberID FROM _Open WHERE JobID = "1234"

正解:B


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

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

正解:A


質問 # 53
A developer is troubleshooting why an API client Jd and chent_secret are authenticating yet failing to access data from a child business unit.
What should be checked to validate the installed package can access the child business unit data?

  • A. The Installed Package has full Enterprise access to all available child business units
  • B. The account id and parent MID are included in the authorization call
  • C. The Installed Package has access to the selected child business unit

正解:C


質問 # 54
A developer is making an API REST call to trigger an email send. An access token is used to authenticate the call.
How long are Marketing Cloud v1 access tokens valid?

  • A. Access tokens expire after 24 hours.
  • B. Each API call requires a new access token.
  • C. REST calls do not require an access token.
  • D. Access tokens expire after one hour.

正解:D


質問 # 55
What can be created in Attribute Groups within Contact Builder? Choose 2.

  • A. Attribute Groups
  • B. Relationships
  • C. Populations
  • D. Data Extensions

正解:B、D


質問 # 56
Certification Aid created a journey and event definition in Marketing Cloud. Which of the following resources are relevant to inject Contacts into the journey using the REST API? Choose 2.

  • A. GET /eventDefinitions/key:{key}
  • B. POST /interaction/v1/events
  • C. POST /eventDefinitions/key:{key} or /eventDefinitions/{id}
  • D. POST /interaction/v1/interactions/contactentry

正解:B、D


質問 # 57
A developer needs to write AMPscript to ensure the expiration date on a coupon is the last day of the month.
What would produce the desired result?

  • A. Find the first day of next month and subtract one day
  • B. Use the date format stringfor last day of month within FormatDate
  • C. Add one month using DateAdd to now
  • D. Add 30 days using DateAdd to now

正解:A


質問 # 58
In which three ways should a developer optimize a query activity if it is currently timing out? Choose 3

  • A. Use SELECT * to include all fields
  • B. Use intermediate tables to stage data
  • C. Use Primary key(s) on fields used in joins
  • D. Use intrisic functions in the WHERE clause
  • E. Only update records that have changed since last execution

正解:B、C、E


質問 # 59
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 /hub/vl/aataevents REST route
  • B. Upload a file to the Enhanced SFTP for import
  • C. Use the DataExtension SOAP object
  • D. Use the DataExtensionObject SOAP object

正解:A、D


質問 # 60
Which encryption methods are supported in file imports? Choose 2.

  • A. PGP
  • B. SSH
  • C. AES
  • D. GPG

正解:A、D


質問 # 61
A developer wants to aggregate monthly energy usage data over a four month period for each subscriber within an email. The monthly usage values are stored in variables for each month in the following way:
How should the developer use AMPscript to generate the total?

  • A. SET @total = (ADD(@jan,@feb), ADD(@mar, @apr))
  • B. SET @total - (@jan - 3fet - @mar @apr>
  • C. SET @total - ADD(@jan,ADD(@feb,ADD(@mar,@apr)))
  • D. SET @total = AZD((@jan @feb) @mar) @apr)

正解:C


質問 # 62
How often should a developer request a new token when making multiple API calls in v1?

  • A. Before every new call
  • B. Every 15 minutes
  • C. When changing routes/objects
  • D. Once an hour

正解:B


質問 # 63
When do synchronous REST API calls to Marketing Cloud time out? Choose 2.

  • A. 240 seconds for tracking and data retrieve operations.
  • B. 300 seconds for tracking and data retrieve operations.
  • C. 120 seconds for non-tracking operations.
  • D. 240 seconds for non-tracking operations.

正解:B、C


質問 # 64
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. REST
  • B. SOAP
  • C. XML
  • D. Bulk

正解:A


質問 # 65
New subscribers at Northern Trail Outfitters (NTO) are added to a data extension. NTO would like to send these subscribers a welcome series with Journey Builder.
What would allow the data extension to be selected for journey entry'

  • A. The Triggered Send Template must be used to create the data extension.
  • B. At least one Campaign must be associated to the data extension.
  • C. The data extension must be configured for sending.
  • D. The data extension must contain a field of the EmailAddress data type.

正解:C


質問 # 66
......

ベストなSalesforce Marketing-Cloud-Developer学習ガイドと問題集には2024:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-shiken.html

トップクラスSalesforce Marketing-Cloud-Developer試験材料で学習ガイド!練習問題バージョンで挑もう:https://drive.google.com/open?id=1U4Nn8Z8DKNBPz4ZUE7TaRiEm7Z380BV0