最新のMarketing-Cloud-Developer日本語試験のリアル試験問題 本日無料更新されました
Marketing-Cloud-Developer日本語リアル試験問題解答は更新された[2025年11月05日]
質問 # 12
開発者は、Customers データエクステンションで、過去 30 日間に購入したすべてのサブスクライバーを見つける必要があります。購入データは、'PurchaseDate' という列を含む Orders データエクステンションにあります。連絡先は両方のデータエクステンションで「ContactKey」と呼ばれる列によって識別され、Orders データエクステンションには同じ購読者の多くのインスタンスを含めることができます。
目的の結果を得るために、開発者はどの SQL キーワードを使用する必要がありますか?
- A. ORDER BY PurchaseDate ASC
- B. 内部結合
- C. 外部結合
正解:A
質問 # 13
送信処理に最も悪影響を与える可能性があるAMPscript関数グループはどれですか?
- A. 日時
- B. データ拡張機能
- C. 文字列関数
- D. 数学関数
正解:B
質問 # 14
開発者は、コードをレビューする他の開発者の利益のために、AMPscriptコードブロック内にコメントを含めたいと考えています。
開発者はどの構文を使用する必要がありますか?
- A. -これはコメントです
- B. <!-これはコメントです
- C. / "これはコメントです* /
- D. //これはコメントです
正解:C
解説:
In AMPscript, comments can be added within a code block using the/* comment */syntax. This allows developers to include notes or explanations without affecting the execution of the script.
* Example:
ampscript
Copy code
%%[ /* This is a comment */ SET @var = "value" ]%%
質問 # 15
開発者が Marketing Cloud でランディング ページを構築しており、呼び出しページを含むメールに購読者に関する個人情報が表示されます。
開発者は CTA リンクをどのように作成できますか?
- A. EmailAddress をエンコードされたパラメーターとして URL に追加します。
- B. AMPscript CloudPagesURL 関数を使用します。
- C. SubscnberKey をエンコードされたパラメーターとして URL に追加します。
正解:B
質問 # 16
Certification Aidは、新しい顧客が会社のWebサイトに登録するときに、クロスチャネルウェルカムキャンペーンに追加したいと考えています。これにはどのAPIを使用する必要がありますか? 1を選択します。
- A. イベント通知API
- B. トランザクションメッセージングAPI
- C. Personalization Builder API
- D. Journey Builder API
正解:D
解説:
To add new customers to a cross-channel welcome campaign when they register on the company website, theJourney Builder API (D)should be used. This API allows you to programmatically inject contacts into a journey, triggering personalized marketing interactions across multiple channels.
References:
* Salesforce Marketing Cloud Journey Builder API
* Cross-Channel Campaign Management
質問 # 17
開発者は、電子メールからリンクされたCloudPageを作成したいと考えています。 %% [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] %% x = 'Tacos'の場合の@valueの期待値はどれですか?
- A. 0
- B. 1
- C. 2
- D. 3
正解:D
解説:
In the provided AMPscript, theIFstatement checks the length of the@pointvariable and sets@value accordingly. Sincex = 'Tacos'has a length of 5, it meets the first conditionLength(@point) > 1, which sets
@valueto 1. Subsequent conditions are not evaluated because the first condition is already true.
* AMPscript IF-ELSEIF Example:
%%[ 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 ]%%
質問 # 18
開発者がファイルドロップ自動化を設定しており、ファイル名パターンを使用してファイルにタイムスタンプを付与したいと考えています。ファイル名は常に、ファイルがSFTPサイトにドロップされた月日(例:MAY15)で始まります。
自動化を正常に開始するには、どの2つの構成を使用する必要がありますか?2つの回答を選択してください
- A. %%MMMMdd%%
- B. %%Month%%%%Day%°/o
- C. Ends With operator
- D. Begins With operator
正解:B、D
解説:
To configure a File Drop Automation with a filename pattern that allows for timestamps and starts with the month and day, the developer should use:
* Begins With operator (D) - This ensures that the automation triggers when the file name begins with the specified pattern.
* %%Month%%%%Day%% (C) - This is the correct syntax to match the month and day in the file name.
For example, if the file name is "MAY15", the pattern will be %%MMMM%%dd.
References:
Salesforce Marketing Cloud File Drop Automations
Automation Studio Filename Patterns
質問 # 19
開発者が重複する連絡先を特定し、ContactDeleteを使用して約1,000万人のサブスクライバーを削除したいと考えています。プロセスをどのように促進できますか?
- A. 不要な送信可能なデータ拡張を削除します
- B. 現在の削除プロセスを停止し、より小さなグループを削除します
- C. 抑制値をより大きな値に変更します
- D. すべての連絡先のサブスクライバーを手動で削除する
正解:A
質問 # 20
開発者は、特定の電子メールを開いたサブスクライバーを特定することにより、オーディエンスを構築したいと考えています。開発者はどのクエリを使用する必要がありますか?
- A. SELECT * FROM _Open WHERE ListID = '1234'
- B. SELECT SubscriberID FROM _Open WHERE JobID = "1234"
- C. SELECT SubscriberKey FROM _Open WHERE JobID = '1234'
- D. SELECT * FROM _Open WHERE JobID = "1234"
正解:C
解説:
To build an audience by identifying subscribers who opened a specific email, the developer should use the following query:
SELECTSubscriberKeyFROM_OpenWHEREJobID='1234'
This query selects the SubscriberKey from the _Open data view where the JobID matches the specific email send.
References:
* Salesforce Marketing Cloud Data Views
* Salesforce SQL Reference Guide
質問 # 21
ノーザントレイルアウトフィッターズ(NTO)は、サブスクライバーキーに数値識別子を使用します。顧客データは、サブスクライバーキーが主キーとして設定されたデータ拡張機能に保存されます。
Data Designerでこのデータ拡張の関係を作成するときに、NTOに必要な手順はどれですか。
- A. 関係を作成するときに1対1のカーディナリティを使用します
- B. 関係を作成するときに、連絡先IDをサブスクライバーキーにリンクします
- C. データ拡張機能を連絡先キーにリンクする前に、サブスクライバーキーをテキストデータタイプとして設定します
- D. 関係を作成するときに、連絡先キーをサブスクライバーの電子メールアドレスにリンクします
正解:B
解説:
When creating relationships in Data Designer, it's essential to link the Contact ID to the Subscriber Key. The Contact ID in Marketing Cloud represents a unique identifier for contacts across various data sources, and linking it to the Subscriber Key ensures accurate data mapping and integration.
質問 # 22
Certification Aidは、MarketingCloudに保存されているデータを暗号化したいと考えています。暗号化されていないフィールドがMarketingCloudおよびSalesforceユーザーに表示されていれば問題ありませんが、物理データの盗難を防ぐために、基になるデータは静止状態で暗号化する必要があります。どの暗号化方法を選択する必要がありますか? 1を選択します。
- A. 透過的なデータ暗号化
- B. フィールドレベルの暗号化
- C. トークン化された送信
- D. 非対称暗号化
正解:A
解説:
Transparent Data Encryption (TDE) is designed to protect data at rest by encrypting the underlying storage of the database. This method ensures that data is encrypted on disk to prevent physical data theft while allowing it to remain accessible to authorized users within the system.
質問 # 23
開発者は、特定の電子メールを開いたサブスクライバーを特定することにより、オーディエンスを構築したいと考えています。開発者はどのクエリを使用する必要がありますか?
- A. SELECT * FROM _Open WHERE ListID = '1234'
- B. SELECT SubscriberID FROM _Open WHERE JobID = "1234"
- C. SELECT SubscriberKey FROM _Open WHERE JobID = '1234'
- D. SELECT * FROM _Open WHERE JobID = "1234"
正解:C
質問 # 24
認定エイドは、CSVファイルからデータ拡張機能にデータをインポートしたいと考えています。 CSVファイルには、関連するすべてのデータが含まれています。新しいレコードをデータ拡張機能に追加し、ファイルにないレコードをデータ拡張機能から削除する必要があります。このためにどのインポート操作を選択する必要がありますか? 1を選択します。
- A. 追加のみ
- B. 追加および更新
- C. 上書き
- D. 更新のみ
正解:C
解説:
The "Overwrite" import operation is used when you want to completely replace the contents of a Data Extension with the contents of the import file. This operation adds new records from the file and removes any records that are not present in the file.
* Overwrite Operation: This will ensure that the Data Extension contains only the records present in the CSV file. Any existing records in the Data Extension that are not in the file will be deleted.
質問 # 25
電子メールメッセージで使用するプログラミング言語はどれですか? 1を選択します。
- A. AMPscriptまたはSSJSのいずれか
- B. AMPscriptのみ
- C. 両方
- D. SSJSのみ
正解:A
質問 # 26
開発者は、FormatCurrencyAMPscript関数を使用してフォーマットするデータ拡張機能にテキストフィールドを持っています。 $ 6.96を返す2つの値はどれですか? 2を選択してください
- A. 6.96
- B. 6.96
- C. $ 6.96
- D. 6,961
正解:A、B
解説:
TheFormatCurrencyAMPscript function is used to format a numeric value as a currency. To return a value of
$6.96, the function would correctly format inputs like:
* 6.96 (B)- This is a direct numeric value that will be formatted to $6.96.
* 6.96 (D)- Same as above, the numeric value is directly formatted to $6.96.
UsingFormatCurrency(6.96)in AMPscript will result in$6.96.
References:
* Salesforce Marketing Cloud Documentation on FormatCurrency
* AMPscript Guide
質問 # 27
Northern Trails Outfittersは、REST APIを使用して、購入後に顧客にメールを送信しています。
API呼び出しで使用されるトークンに関してどの考慮事項を考慮する必要がありますか?
- A. トリガーされた各送信API呼び出しの前にトークンAPI呼び出しを行います。
- B. トークンAPI呼び出しを行い、トークンの有効期限が切れるまでトークンを再利用します。
- C. トークンAPI呼び出しを行い、次のAPI呼び出しが失敗するまでトークンを再利用します。
- D. トークンAPI呼び出しを行い、そのサブスクライバーのトークンを再利用します。
正解:B
解説:
When using the REST API to send emails to customers after a purchase, the developer shouldmake a token API call and re-use the token until the token expires (D). This approach optimizes API usage by reducing the number of token requests, ensuring that the token is reused until it naturally expires, after which a new token can be requested.
References:
* Salesforce Marketing Cloud API Authentication
* Token Management Best Practices
質問 # 28
開発者は、クエリアクティビティの知識を広げたいと考えています。彼らは、過去30日間にバウンスした電子メールアドレスを、バウンス理由およびいくつかの追加のサブスクライバー固有のデータとともに特定したいと考えています。ただし、彼らが書いたSQLはレコードを返しません。以下はSQLステートメントです。
このSQLステートメントが目的の結果を返すようにするには、どのような更新を行う必要がありますか?
- A. Marketing Cloud_BounceデータビューにEmailAddressが含まれていません。彼らはSubscriberlDに参加する必要があります。
- B. MarketingCloudはGETDATE関数の使用を許可していません。特定の日付を定義する必要があります。
- C. MarketingCloudのデータビューは20日分のデータしか保持しません。 DateAdd関数の範囲を狭める必要があります。
- D. Marketing Cloudは、クエリアクティビティでDateAdd関数を許可していません。特定の日付を定義する必要があります。
正解:A
質問 # 29
Web Analytics Connectorを介してリンクにデータを追加する場合、サブスクライバーの動作を追跡するためにどのパラメーターを使用する必要がありますか?
- A. サブスクライバーID
- B. サブスクライバーキー
- C. 連絡先キー
- D. メールアドレス
正解:B
解説:
The SubscriberKey is the appropriate parameter to use when appending data to links via the Web Analytics Connector. This parameter uniquely identifies subscribers across all sends and ensures accurate tracking of subscriber behavior.
* Subscriber Key: A unique identifier for a subscriber that remains consistent across all data extensions and sends.
1: Salesforce Web Analytics Connector
質問 # 30
ノーザントレイルアウトフィッターズは、番号を使用して、さまざまなマーケティングチャネル全体の連絡先を一意に識別します。
データモデルを操作するときに、Marketing Cloudのチャネル間で連絡先を確実に関連付けるために、開発者はどの2つのアクションを実行する必要がありますか?
2つの答えを選択してください
- A. 各チャネルの連絡先に一意の識別子をリンクする属性グループを作成します。
- B. 数値の一意の識別子値をテキストデータ型としてデータ拡張に格納します。
- C. 連絡先ビルダーの属性グループの連絡先IDに数値フィールド値をリンクします。
- D. 各チャネルに一意の識別子仕様を使用して自動的に接続します-..
正解:B、C
質問 # 31
Certification Aidは、MarketingCloudに保存されているデータを暗号化したいと考えています。暗号化されていないフィールドがMarketingCloudおよびSalesforceユーザーに表示されていれば問題ありませんが、物理データの盗難を防ぐために、基になるデータは静止状態で暗号化する必要があります。どの暗号化方法を選択する必要がありますか? 1を選択します。
- A. 透過的なデータ暗号化
- B. フィールドレベルの暗号化
- C. トークン化された送信
- D. 非対称暗号化
正解:A
質問 # 32
MarketingCloudへの同期RESTAPI呼び出しはいつタイムアウトしますか? 2を選択します。
- A. 追跡およびデータ取得操作に300秒。
- B. 非追跡操作の場合は120秒。
- C. 追跡およびデータ取得操作に240秒。
- D. 非追跡操作の場合は240秒。
正解:A、B
質問 # 33
SSJSを使用してコンテンツをパーソナライズするために、サブスクライバー、システム、および送信可能なデータ拡張属性をどのように参照できますか? 1を選択します。
- A. <ctrl:field name="attributeName" />
- B. <field name="attributeName" />
- C. <ctrl:var name="attributeName" />
- D. <ctrl:attribute name="attributeName" />
正解:A
質問 # 34
開発者は、API クライアントの Jd と chent_secret が認証されているにもかかわらず、子ビジネス ユニットからのデータにアクセスできない理由をトラブルシューティングしています。
インストールされたパッケージが子部署のデータにアクセスできることを確認するには、何を確認する必要がありますか?
- A. アカウント ID と親 MID が承認呼び出しに含まれています
- B. インストールされたパッケージには、使用可能なすべての子ビジネス ユニットへの完全なエンタープライズ アクセス権があります。
- C. インストール済みパッケージは、選択した子ビジネス ユニットにアクセスできます。
正解:C
解説:
To ensure that an installed package can access data from a child business unit, verify that the package has been granted access to the specific child business unit. This is configured during the package setup and permissions assignment.
1: Salesforce Installed Packages and Business Unit Access
質問 # 35
ノーザントレイルアウトフィッターズは、15のビジネスユニットを持つエンタープライズ2.0アカウントを持っています。各ビジネスユニットは、各製品の詳細を含む「在庫」という名前の共有データ拡張機能にアクセスできます。'InStock'という名前のブールフィールドは、アイテムが使用可能かどうかを示します。
現在利用可能なすべての製品を返すAMPscriptのスニペットはどれですか?
- A. LookupRows('Inventory *、' InStock'' true'、)
- B. LookupRows('Ent。Inventory*、itemName、' InStock'、' true')
- C. LookupRows('Ent。Inventory*、' InStock'、' true'、)
- D. LookupRows('Ent。Inventory*、' true'、' InStock')
正解:C
解説:
The LookupRows function retrieves rows from a data extension where specified criteria are met. In an Enterprise 2.0 account, the data extension name in shared data extensions should be prefixed with 'Ent.' to indicate it is in the shared space.
* Example:
SET @rows = LookupRows('Ent. Inventory', 'InStock', 'true')
1: Salesforce AMPscript LookupRows Function
質問 # 36
......
最新のMarketing-Cloud-Developer日本語学習ガイド2025年最新の- 提供するのはテストエンジンとPDF:https://jp.fast2test.com/Marketing-Cloud-Developer-JPN-premium-file.html