あなたを合格させるMarketing-Cloud-Developer日本語お手軽に試験合格リアルMarketing-Cloud-Developer日本語練習問題集で更新されたのは2025年11月12日
2025年最新の実際に出ると確認されたで無料Salesforce Marketing-Cloud-Developer日本語試験問題
質問 # 30
ノーザントレイルアウトフィッターズの法務チームは、レコードがすでに削除の対象になっている場合でも、SendableDataExtensionにサブスクライバーを取り込む毎日のインポートプロセスについて懸念しています。
この送信可能データ拡張機能への送信が直接開始された場合に、これらのレコードで予想される2つの実際の動作はどれですか。
2つの答えを選択してください
- A. 削除されたレコードは無期限に送信から除外されます。
- B. まだ抑制フェーズにあるレコードは送信から除外されます。
- C. 抑制フェーズにあるレコードは、送信時に手動で指定された場合にのみ除外されます。
- D. すでに削除されているレコードは、新しいレコードとして扱われます。
正解:A、B
解説:
When a send is initiated directly to a Sendable Data Extension that includes records targeted for deletion, the following behaviors are expected:
* Records still in the suppression phase will be excluded from sends (B)- These records are in the process of being deleted and will not be included in the send.
* Records that have been deleted will be excluded from sends indefinitely (D)- Once records are deleted, they are permanently excluded from future sends.
References:
* Salesforce Marketing Cloud Contact Delete Process
* Contact Suppression and Deletion
質問 # 31
企業は、トリガーによる送信に REST API を使用することを選択しましたが、テスト中に引き続き次のエラーが発生します:「トリガーによる送信要求をキューに入れることができません。有効なサブスクライバーがありません。」彼らは、SOAP API がエラーに関する詳細情報を提供することを知らされ、ペイロードに必要なデータ拡張フィールドが含まれていないことがわかりました。
このレベルの詳細を提供する SOAP API 応答の要素はどれですか?
- A. エラーの説明
- B. エラーコード
- C. 総合ステータス
正解:A
解説:
In the SOAP API response, the element that provides detailed information about the error, including missing required data extension fields, isErrorDescription (A). This element contains a description of the error, helping developers understand and resolve the issue.
References:
* Salesforce Marketing Cloud SOAP API
* SOAP API Error Handling
質問 # 32
開発者は、特定のデータエクステンションに含まれるレコードの数を知る必要があります。これにより、ランディング ページに表示される内容が決まります。
指定されたデータエクステンションの行数を返す AMPscript 関数はどれですか?
- A. LookupRowCount
- B. 行数
- C. DataExtensionRowCount
正解:C
解説:
The AMPscript function that returns the number of rows in a specified data extension is DataExtensionRowCount (B). This function provides the count of rows within a data extension, which can be used to dictate what is displayed on a landing page.
Example usage:
SET @rowCount = DataExtensionRowCount("MyDataExtension")
References:
* Salesforce Marketing Cloud AMPscript Guide: DataExtensionRowCount
質問 # 33
開発者は、可変アドレスを使用して会社の所在地の住所を動的に入力する電子メールを作成したいと考えています。この展開は数百万の購読者に行われ、開発者は可能な限り高速なパフォーマンスを求めています。
どの AMPscript ソリューションが推奨されますか?
- A. %%; SET @address = LookupRows(Building_Locations", "Address", "Id") ]%%
- B. %: SET @address = Lookup(''Building_locations'', Address'', ''id''@id) ] %%
- C. %%[ SET @address = field(Lookcup("Building_Locations"/ "Address", "Id",@Id), "Address") ]%%
- D. %% [ SET @address - field(Row(LookupRows("Building_Locations", "Address","Id"), 1),"Address")
]%%
正解:B
解説:
To dynamically populate the physical address of a company's locations using the variable@addressand ensure the fastest possible performance for millions of subscribers, the recommended AMPscript solution is:
%%[ SET @address = Lookup("Building_Locations", "Address", "Id", @Id) ]%% This solution uses theLookupfunction, which retrieves a specific field value from a data extension based on the given criteria. It is efficient and performs well for high-volume sends.
References:
* Salesforce Marketing Cloud AMPscript Guide
* Salesforce Marketing Cloud Documentation
質問 # 34
開発者は、_Bounce データ ビューからデータをクエリし、それをデータ エクステンションに格納しています。彼らは、フィールド SMTPBounceReason および SMTPCode が、DE スキーマで指定されている各フィールドの 4000 文字の制限を超える場合があることを発見しました。元の要求者と相談した結果、各フィールドの最初の 4000 文字を保存するだけでよいという結論に達しました。
この目的で使用できる SQL 関数はどれですか?
- A. 最初
- B. 右
- C. 左
正解:C
解説:
To store only the first 4000 characters of the fields SMTPBounceReason and SMTPCode in a data extension, the developer should use the LEFT (C) SQL function. This function returns the specified number of characters from the beginning of a string.
Example:
SELECT SubscriberKey, LEFT(SMTPBounceReason, 4000) AS SMTPBounceReason, LEFT(SMTPCode,
4000) AS SMTPCode FROM _Bounce
References:
SQL LEFT Function
Salesforce Marketing Cloud SQL Reference
質問 # 35
NTO は、各テスト メールの名前の先頭に TEST という単語を付けます。これらのメールを送信した購読者を返すクエリはどれですか?
- A. SELECT * FROM _Job J INNER JOIN _Sent S on J.JobID = JobID = S.JobID WHERE J.EmailName = 'TEST%'
- B. SELECT * FROM _Job J INNER JOIN _Sent S on J.EmailName LIKE 'TEST%'
- C. SELECT * FROM _Job INNER JOIN _Sent on JobID = JobID WHERE EmailName LIKE 'TEST%'
- D. SELECT * FROM _Job J INNER JOIN _Sent S ON.JobID = S.JobID WHERE J.EmailName LIKE 'TEST%'
正解:D
解説:
To retrieve subscribers who were sent emails with names starting with "TEST," we need to join the _Job and
_Sent system data views on the JobID field and filter by the EmailName field using a LIKE condition.
* Join Condition: The correct join condition between _Job and _Sent is ON J.JobID = S.JobID. This ensures that we are linking the job and sent data correctly.
* EmailName Filter: We use J.EmailName LIKE 'TEST%' to filter for emails whose names start with
"TEST".
SELECT * FROM _Job J INNER JOIN _Sent S ON J.JobID = S.JobID WHERE J.EmailName LIKE
'TEST%'
1: Salesforce Marketing Cloud System Data Views
質問 # 36
開発者は、SOAP APIを利用して、カスタムプロファイルセンターにプロファイル属性と設定属性を動的に表示しています。動的機能をサポートするために使用できる方法はどれですか?
- A. 説明
- B. 実行する
- C. 抽出
- D. 構成
正解:A
質問 # 37
開発者は、いくつかの REST API と対話する一連の CloudPages を構築したいと考えています。
Marketing Cloud がサポートするどのスクリプト ツールを使用する必要がありますか?
- A. SSJS
- B. GTL
- C. AMPscript
正解:A
解説:
To build out a series of CloudPages that will interact with several REST APIs, the developer should useSSJS (Server-Side JavaScript) (C). SSJS is supported in Marketing Cloud and provides robust capabilities for interacting with external APIs, handling HTTP requests, and processing data.
References:
* Salesforce Marketing Cloud SSJS Guide
* SSJS Functions
質問 # 38
開発者は、RESTAPIを介して連絡先をプログラムでジャーニーに挿入したいと考えています。 POSTデータ拡張フィールドと値を使用する推奨ルートは何ですか?
- A. / contacts / v1 / contactEvents
- B. / interaction / v1 / interactions
- C. / Interaction / v1 / eventDefinitions
- D. / Interaction / v1 / events
正解:D
解説:
To programmatically inject Contacts into a journey via the REST API, the recommended route is/interaction/v1/events. This endpoint allows you to trigger an event which can be configured to start a journey for the specified contacts.
References:
* Salesforce Marketing Cloud REST API
* Journey Builder API
質問 # 39
NTOは、除外スクリプトで定義されているビジネスルールに基づいて、特定のサブスクライバーへの送信を除外したいと考えています。この機能をサポートする送信の3つのタイプはどれですか? 3を選択してください
- A. SalesまたはServiceCloudでMarketingCloudメールを送信する
- B. ジャーニービルダーのメールアクティビティの送信
- C. コンテンツビルダーの送信フロー
- D. AutomationStudioのメール送信アクティビティ
- E. ジャーニービルダーSMSアクティビティを送信
正解:B、C、D
質問 # 40
開発者は、NewSubscribersという名前のターゲット送信データ拡張とは異なるCustomersデータ拡張からの受信者の名でウェルカムメールをパーソナライズしたいと考えています。両方のデータ拡張機能には、CustomerKeyという名前のフィールドに一意の識別子が含まれています。要求に応じて、どのAMPscript構文が名のパーソナライズを設定しますか?
- A. %%=Lookup('Customers', 'FirstName', 'CustomerKey', CustomerKey)=%%
- B. %%=Lookup('Customers', 'FirstName', 'ContactID', CustomerKey)=%%
- C. %%=Lookup('NewSubscribers','FirstName','ContactID',CustomerKey)=%%
- D. %%=Lookup('Customers','FirstName','CustomerKey', 'CustomerKey')=%%
正解:A
解説:
To personalize the welcome email with the recipient's first name from the Customers data extension, you use the Lookup function to retrieve the FirstName field based on the CustomerKey field.
* Lookup Function: The Lookup function retrieves a value from a specified data extension.
* Syntax:
%%=Lookup('Customers', 'FirstName', 'CustomerKey', CustomerKey)=%%
* 'Customers' is the name of the data extension from which to retrieve data.
* 'FirstName' is the field to retrieve.
* 'CustomerKey' is the field to match on.
* CustomerKey is the value to match in the 'CustomerKey' field of the 'Customers' data extension.
1: Salesforce AMPscript Lookup Function
質問 # 41
以下のIFステートメントの目的は何ですか?
- A. 画像が壊れたときに処理する
- B. 加入者が保留状態にあるときに処理する
- C. LookupRows関数によって行が返されない場合に処理する
- D. サブスクライバーのデータ拡張に複数のレコードがある場合に処理する
正解:C
質問 # 42
ある開発者が、多くのデータ バリアントを含む複雑な動的メールを作成しました。テスト データを手動で作成するのではなく、ライブ データのサブセットを使用して、電子メールの動的な側面を検証したいと考えています。
大規模なデータ セットから代表的なサンプルを収集するには、どの SQL 関数を使用する必要がありますか?
- A. NTILE
- B. オーバー
- C. 持っている
正解:B
質問 # 43
開発者は、Sendable DataExtensionのフィールドを使用するように変数を設定したいと考えています。
電子メールの送信に使用されるSendableData Extensionから変数を「名」フィールドとして設定するためにAMPscriptブロックで使用できる2つのオプションはどれですか?2つの回答を選択してください
- A. SET @firstName = attributeValue( '' First Name '')
- B. SET @firstName = ''名 '']
- C. SET @firstName = [名]
- D. SET @firstName = %% First Name %%
正解:A、D
解説:
To set a variable to use a field from a Sendable Data Extension in an AMPscript block, the following options can be used:
* SET @firstName = %%First Name%% (B)- This syntax directly references the field value within AMPscript.
* SET @firstName = AttributeValue('First Name') (C)- This function retrieves the value of the specified attribute (field) for the current subscriber context.
References:
* Salesforce Marketing Cloud AMPscript Guide
* AttributeValue Function
質問 # 44
開発者は、Sendable DataExtensionのフィールドを使用するように変数を設定したいと考えています。
電子メールの送信に使用されるSendableData Extensionから変数を「名」フィールドとして設定するためにAMPscriptブロックで使用できる2つのオプションはどれですか?2つの回答を選択してください
- A. SET @firstName = attributeValue( '' First Name '')
- B. SET @firstName = ''名 '']
- C. SET @firstName = %% First Name %%
- D. SET @firstName = [名]
正解:A
質問 # 45
電子メールメッセージで使用できるSSJSライブラリはどれですか? 1を選択します。
- A. なし
- B. 両方
- C. コア
- D. プラットフォーム
正解:D
質問 # 46
CertificationAidはMarketingCloud Connectを使用しており、ランディングページにリードキャプチャフォームを作成したいと考えています。顧客がフォームを送信するとき、Salesforceでリードレコードを作成する必要があります。これに使用できるスクリプト言語はどれですか? 2を選択します。
- A. 機能全体のSSJS。
- B. Salesforceレコードを作成するSSJS、フォーム処理用のAMPscript。
- C. 機能全体のAMPscript。
- D. Salesforceレコードを作成するためのAMPscript、フォーム処理用のSSJS。
正解:A、D
解説:
To create a lead capture form on a landing page and create a Lead record in Salesforce, you can use either AMPscript or SSJS. AMPscript can be used for interacting with Salesforce, and SSJS can handle form processing. Alternatively, SSJS can handle the entire process, including creating the Salesforce record.
* AMPscript and SSJS Combination: You can use AMPscript to interact with Salesforce APIs to create records and SSJS for form handling.
* SSJS for Full Functionality: SSJS can handle both the form submission and the interaction with Salesforce to create Lead records.
1: Salesforce AMPscript and SSJS Integration
質問 # 47
......
Marketing-Cloud-Developer日本語リアル試験問題解答は無料:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-JPN-shiken.html