
Salesforceは2025年最新のMarketing-Cloud-Developerテスト解説(更新されたのは196問があります)
Marketing-Cloud-Developer試験問題集を提供していますSalesforce問題
Salesforce Marketing-Cloud-Developerの認定試験は、Salesforce Marketing Cloudプラットフォームを使用してマーケティングオートメーションソリューションを開発および実装する能力をテストするために設計されています。この認定は、マーケティングオートメーションソリューションを扱っている経験があり、Salesforce Marketing Cloudプラットフォームを使用して複雑なマーケティングキャンペーンを作成および管理するスキルに熟練している個人を対象としています。
質問 # 81
Certification Aid wants to create a file drop automation with a filename pattern. An import file is placed daily on the Marketing Cloud Enhanced FTP server, and the file name always starts with the current month and day (e.g. OCT26). How should the filename pattern be defined? Choose 2.
- A. %%MMDD%%
- B. Ends With operator
- C. Begins With operator
- D. %%Month%%%%Day%%
正解:C、D
質問 # 82
A developer wants to personalize a welcome email with the recipient's first name from the Customers data extension, which is different from the targeted sending data extension named NewSubscribers. Both data extensionscontain the unique identifier in a field named CustomerKey. Which AMPscript Syntax would populate the first name personalization as requested?
- A. %%=Lookup('Customers','FirstName','CustomerKey', 'CustomerKey')=%%
- B. %%=Lookup('Customers', 'FirstName', 'CustomerKey', CustomerKey)=%%
- C. %%=Lookup('NewSubscribers','FirstName','ContactID',CustomerKey)=%%
- D. %%=Lookup('Customers', 'FirstName', 'ContactID', CustomerKey)=%%
正解:B
解説:
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.
* CustomerKeyis the value to match in the 'CustomerKey' field of the 'Customers' data extension.
質問 # 83
NTO wants toexclude sends to specific subscribers based on a business rule, which is defined in an Exclusion Script. Which three types of sends would support this functionality? Choose 3
- A. Journey Builder Send Email Activity
- B. Send Marketing Cloud Email in Sales or Service Cloud
- C. Automation Studio Send Email Activity
- D. Content Builder Send Flow
- E. Journey Builder Send SMS Activity
正解:A、C、D
解説:
Exclusion Scripts are used to exclude subscribers from email sends based on specific criteria. This functionality can be applied in various sending scenarios within Salesforce Marketing Cloud.
* Journey Builder Send Email Activity: In Journey Builder, exclusion scripts can be applied to Email Activities to ensure specific subscribers are excluded based on the business rules.
質問 # 84
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 = Lookup(''Building_locations'', Address'', ''id''@id) ] %%
- B. %% [ SET @address - field(Row(LookupRows("Building_Locations", "Address","Id"), 1),"Address") ]%%
- C. %%[ SET @address = field(Lookcup("Building_Locations"/ "Address", "Id",@Id), "Address") ]%%
- D. %%; SET @address = LookupRows(Building_Locations", "Address", "Id") ]%%
正解:C
質問 # 85
Northern Trail Outfitters (NTO) stores most of their customer data in Marketing Cloud. They do not mind their data being viewed in clear text within SFMC to users who have access, but they want to ensure the underlying database files are encrypted at rest in case the physical media is stolen.
Which encryption method should NTO use?
- A. Transparent Data Encryption
- B. Field-Level Encryption
- C. Encrypted Data Sending
- D. Tokenized Sending
正解:A
解説:
Transparent Data Encryption (TDE) is the appropriate method for ensuring that the underlying database files are encrypted at rest. TDE encrypts the database files themselves, protecting the data in case the physical media is stolen, while allowing the data to be viewed in clear text by authorized users within the system.
* Transparent Data Encryption: Encrypts data at rest, ensuring that the database files are secure.
質問 # 86
In which three ways should a developer optimize a query activity if it is currently timing out? Choose 3
- A. Use intrisic functions in the WHERE clause
- B. Use SELECT * to include all fields
- C. Only update records that have changed since last execution
- D. Use intermediate tables to stage data
- E. Use Primary key(s) on fields used in joins
正解:C、D、E
解説:
To optimize a query activity that is currently timing out, a developer can use the following strategies:
* Use Primary key(s) on fields used in joins (C)- Ensures that the join operations are efficient by utilizing indexed fields.
* Use intermediate tables to stage data (D)- Breaks down complex queries into simpler steps, improving manageability and performance.
* Only update records that have changed since last execution (E)- Reduces the amount of data processed by focusing only on changes since the last query run.
References:
* Salesforce Marketing Cloud SQL Optimization
* Query Activity Best Practices
質問 # 87
Certification Aid wants to include SSJS in an email message. Which code block can be used for this? Choose 2.
- A. <script language=javascript></script>
- B. <script language=ssjs></script>
- C. <script runat=server language=javascript></script>
- D. <script runat=server></script>
正解:C、D
質問 # 88
A developer needs to create a fully-branded CloudPagewhich includes images hosted in Content Builder. The developer wants to secure the page and its elements using the SSL protocol.
What is the minimum number of SSL certificates required?
- A. None
- B. Three
- C. One
- D. Two
正解:C
解説:
To secure a CloudPage and its elements (such as images) using SSL, a single SSL certificate can be used if both the CloudPage and the images are hosted under the same domain. This SSL certificate ensures that all content served from that domain is encrypted and secure.
質問 # 89
A developer needs to find all subscribers on the Customers data extension who made a purchase in the last 30 days. Purchase data is on the Orders data extension which contains a column called 'PurchaseDate'. Contacts are identified in both data extensions by a column called 'ContactKey', and the Orders data extension can contain many instances of the same subscnber.
Which SQL keyword should the developer use to achieve the desired result?
- A. OUTER JOIN
- B. INNER JOIN
- C. ORDER BY PurchaseDate ASC
正解:C
質問 # 90
Why woulda developer use LookupRows Instead of the Lookup AMPscript function?
- A. To return a complete rowset from the data extension
- B. To access a data extension, as Lookup only targets lists
- C. To see how many rows are In a data extension
- D. To stay at the limit of two Lookup calls in one email
正解:A
解説:
A developer would use theLookupRowsfunction instead of theLookupAMPscript functionto return a complete rowset from the data extension (A). TheLookupRowsfunction retrieves all rows that match a specified criterion, returning a rowset that can be further processed or iterated over in AMPscript. In contrast, theLookupfunction retrieves only a single field value from the first row that matches the specified criteria.
References:
* Salesforce Marketing Cloud AMPscript Guide
* Salesforce Marketing Cloud AMPscript Functions
質問 # 91
A developer needs to use the 'contacts/ route of the REST API to update records in a data extension.
What should the developer verify before making the API call?
- A. The data extension should be linked in an AttributeGroup in Contact Builder.
- B. Journey Builder should be configured to use the data extension.
- C. Each contact should alreadyexist in All Subscribers.
- D. Contact Key should be equal to Subscriber Key in the underlying data extensions to ensure proper joining.
正解:A
解説:
Before using the 'contacts/' route of the REST API to update records in a data extension, the developer should verify thatthe data extension should be linked in an AttributeGroup in Contact Builder (D). This ensures that the data extension is part of the contact model and can be accessed and updated using the REST API.
References:
* Salesforce Marketing Cloud REST API
* Contact Builder and Attribute Groups
Questions no:153Verified answer:DComprehensive Detailed Step by Step Explanation with References:To ensure a blank email will not be sent when creating a complex dynamic email with multiple sections and content blocks, the developer shouldconfirm every version has default content (D). This practice ensures that if any dynamic content fails to load or meet the conditions, the default content will be displayed, preventing a blank email from being sent.
References:
* Salesforce Marketing Cloud AMPscript Guide
* Salesforce Marketing Cloud Dynamic Content Best Practices
Questions no:154Verified answer:DComprehensive Detailed Step by Step Explanation with References: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
Top of Form
質問 # 92
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
質問 # 93
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. POST /interaction/v1/interactions/contactentry
- B. GET /eventDefinitions/key:{key}
- C. POST/eventDefinitions/key:{key} or /eventDefinitions/{id}
- D. POST /interaction/v1/events
正解:C、D
解説:
To inject contacts into a journey using the REST API, the correct endpoints involve the event definitions and events.
* POST /eventDefinitions/key:{key} or /eventDefinitions/{id}: This endpoint allows you to interact with event definitions by key or ID, which is essential for managing journey events.
* POST /interaction/v1/events: This endpoint is used to inject events into the journey, thus adding contacts to the journey based on the defined event.
質問 # 94
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 JobID
- B. SubscriberID and BatchID
- C. SubscriberKey and BatchID
- D. EmailAddress and JobID
正解:A
質問 # 95
A particular data extension need to be configured to store six months of data.
How shoulddata retention be added to the data extension in Email Studio?
- A. Import a file to overwrite the rows with six months of data
- B. Run a query to overwrite the rows with six months of data
- C. Create a new data extension that includes data retention settings
- D. Update the data extension configuration to include data retention settings.
正解:D
解説:
To configure a data extension to store data for six months, you should update the data extension configuration to include data retention settings.
* Data Retention Settings: You can configure data retention directly within the data extension settings in Email Studio to specify how long data should be retained. This ensures that data older than the specified period is automatically deleted.
* Go to Email Studio -> Subscribers -> Data Extensions.
* Select the data extension you want to configure.
* Click on "Properties".
* Under "Data Retention", set the retention period to six months and define the retention settings accordingly.
質問 # 96
Adeveloper wants to create a Synchronized Data Extension containing Lead data from Sales Cloud. They only want to include record which contain a phone number. Each of the following flied contains this information per these rules: -Phone is not black (Data Type = Phone) -PhoneExist is true (Data Type = Boolean)
-ValidPhone is 'true' (Data Type = Formula(Boolean)) -ContactType equals 'Phone' (Data Type = Text).
Which field could be used to select a subset of records in the synchronization configuration?
- A. ValidPhone
- B. Phone
- C. PhoneExists
- D. ContactType
正解:B
質問 # 97
Which aspect should a developer consider before creating an Server-to-Server Installed Package and associated API Integration i* Marketing Cloud?
- A. Using an Installed Package, APIs will have access to resources in all Business Units.
- B. Scope (Permissions) must be specifically granted when creating an API Integration component inside an Installed Package.
- C. Scope (Permissions) will be granted based on the User who is creating the Installed Package.
正解:B
質問 # 98
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. /contacts/v1/contactEvents
- B. /interaction/v1/events
- C. /interaction/v1/interactions
- D. /interaction/v1/eventDefinitions
正解:B
解説:
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
質問 # 99
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. The data extension must contain a field of the EmailAddress data type.
- C. At least one Campaign must be associated to the data extension.
- D. The data extension must be configured for sending.
正解:D
質問 # 100
A developer receives Error Code 5 when performing a SOAP API call. The error states: "Cannot Perform 'Post' on objects of type 'SentEvent'".
What could be the issue?
- A. SOAP does not support POST; use REST
- B. The authentication token has expired.
- C. 'SentEvent' is not able to be updated using SOAP.
- D. It may be a temporary network issue.
正解:B
質問 # 101
......
Marketing-Cloud-Developer認定ガイドPDFは100%カバー率でリアル試験問題:https://jp.fast2test.com/Marketing-Cloud-Developer-premium-file.html
合格させるMarketing-Cloud-Developerレビューガイド、信頼され続けるMarketing-Cloud-Developerテストエンジン:https://drive.google.com/open?id=1HBsH4QD1h-PveMm4mDZxaW2Zy19PdY43