
[2024年11月最新リリース]Marketing-Cloud-Developer試験問題はあなたをパスさせる
Salesforce Marketing-Cloud-Developer試験基本問題とアンサー
質問 # 54
A developer wants to retrieve all recordsin the OrderDetails data extension which are associated with a particular customer.
Which two AMPscript functions would return a suitable rowset?
Choose 2 answers
- A. Lookup
- B. LookupRows
- C. Row
- D. LookupOrderedRows
正解:B、D
解説:
To retrieve multiple records associated with a particular customer from theOrderDetailsdata extension, the LookupRowsandLookupOrderedRowsfunctions are suitable. These functions return a rowset containing the records that match the specified criteria.
* LookupRows: Retrieves a rowset of records based on specified criteria.
* Example:
ampscript
Copy code
SET @rows = LookupRows('OrderDetails', 'CustomerID', @customerID)
* LookupOrderedRows: Retrieves a rowset of records based on specified criteria and allows for sorting.
* Example:
SET @rows = LookupOrderedRows('OrderDetails', 0, 'OrderDate DESC', 'CustomerID', @customerID)
質問 # 55
Clock Kicks would like to encrypt and store formdata submitted from a CloudPage in a data extension using AMPscript. Which three encryption options could be used when creating a new key in Key Management?
Choose 3
- A. RSA
- B. Asymmetric
- C. SAML
- D. Salt
- E. Symmetric
正解:B
質問 # 56
A developer 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. Phone
- B. ValidPhone
- C. PhoneExists
- D. ContactType
正解:A
質問 # 57
Northern Trail Outfitters (NTO) uses a numeric identifier for Subscriber Key. Customer data is stored in a data extension with the Subscriber Key set as a Primary Key.
Which step is required for NTO when creating relationships for this data extension in Data Designer'
- A. Use a one-to-one cardinality when creating the relationship
- B. Link the Contact ID to the Subscriber Key when creating the relationship
- C. Link the Contact Key to the Subscriber's email address when creating the relationship
- D. Set Subscriber Key as a text data type before linking the data extension to Contact Key
正解: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.
質問 # 58
A developer initiated a batch delete of Contacts in Contact Builder due to an import error during implementation. There are over two million records that need to be deleted.
Which two factors should be considered when batch deleting large volumes of contacts?Choose 2 answers
- A. The deletion process supersedes other automated account activities.
- B. To more quickly remove contact information, use the suppression period length of 14.
- C. Up to one million records can be deleted in each batch.
- D. The suppression status does not show for individual contacts until the entire batch processes.
正解:A、D
質問 # 59
The Contact Delete feature can be used within an Enterprise 2.0 account from which business unit?
- A. Any business unit
- B. Only in Agency accounts
- C. The Parent account
- D. None of these
- E. The business unit where the contact was introduced
正解:C
解説:
The Contact Delete feature can be used within an Enterprise 2.0 accountfrom the Parent account (B). This ensures centralized management and compliance with organizational data governance policies.
References:
* Salesforce Marketing Cloud Documentation on Contact Delete
* Enterprise 2.0 Account Management
質問 # 60
A developer identified duplicate contacts and wants to delete roughly 10 million subscribers using Contact Delete. How could the process be expedited?
- A. Delete any unnecessary Sendable Data Extensions
- B. Stop the current delete process and delete smaller groups
- C. Manually delete subscribers in All Contacts
- D. Change the Suppression value to a larger value
正解:A
質問 # 61
A developer wants to populate a data extension with the date of the most recent click for each subscriber.
Which query would accomplish this?
- A. SELECT c.SubscriberKey, MIN (c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
- B. SELECT c.SubscriberKey, c.eventDate FROM _Click c WHERE c.IsUnique = 1
- C. SELECT c.SubscriberKey, MAX(c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
- D. SELECT TOP 1 c.SubscriberKey, c.eventDateFROM _Click c ORDER BY c.eventDate DESC
正解:C
質問 # 62
A developer wants to use the Marketing Cloud SOAP API to retrieve which subscribers were sent a particular email. Which SOAP API object should be used?
- A. LinkSend
- B. SentEvent
- C. Send
- D. ListSend
正解:B
質問 # 63
Northern Trail Outfitters has created subscriber attributes including AGE underProfile Manager within their Enterprise 2.0 account.
How would a developer retrieve subscribers over 30 years of age?
- A. Create a query that references the _EnterpriseAttribute data view
- B. The data cannot be retrieved with a query
- C. Create a query thatreferences the _Subscribers data view
- D. Create a filtered Group of subscribers with AGE more than 30
正解:D
解説:
Profile attributes like AGE in Profile Manager are not directly accessible via the _Subscribers data view or
_EnterpriseAttribute data view. To retrieve subscribers over 30 years of age, creating a filtered Group based on the AGE attribute is the most effective method.
質問 # 64
A developer wants to add an image to Content Builder via the API and retrieve the image's published URL.
Which method should the developer use?
- A. POST to the REST API/asset/v1/content/categories and parse the Description parameter
- B. Use the SOAP API to create a Porfoglio object and idenfity the Source property
- C. POST to the REST API/asset/v1/content/assets and parse the FileProperties parameter
- D. GET using the REST API/asset/v1/content/assets and parse the FileProperties parameter
正解:C
解説:
To add an image to Content Builder via the API and retrieve the image's published URL, the developer shouldPOST to the REST API/asset/v1/content/assets and parse the FileProperties parameter (D). This method uploads the image and returns metadata, including the published URL, which can be extracted from the FileProperties.
References:
* Salesforce Marketing Cloud REST API: Content Builder
* Salesforce Marketing Cloud Asset API
質問 # 65
NTO is reconsidering the requirement to have English, Spanish and French versions of their email campaigns.
They request a developer to create a query which aggregates clicks grouped by language of the recipient.
Language is stored in a Profile Attribute.Which two Data Views would be included in the query? Choose 2 answer
- A. _AllSubscribers
- B. _Subscribers
- C. _Click
- D. _Subscribers
正解:B、D
質問 # 66
Certification Aid wants to update Contact data stored in a Data Extension using the REST API. What is required to achieve this? Choose 1.
- A. The Data Extension must be in an Attribute Group.
- B. The Data Extension must be sendable.
- C. The Data Extension must be created in Email Studio.
- D. The Data Extension must be in a Population.
正解:D
質問 # 67
What can be created in Attribute Groups within Contact Builder? Choose 2.
- A. Relationships
- B. Data Extensions
- C. Populations
- D. Attribute Groups
正解:A、B
質問 # 68
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. Run a query to overwrite the rows with six months of data
- B. Create a new data extension that includes data retention settings
- C. Import a file to overwrite the rows with six months of data
- 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.
質問 # 69
A developer identified duplicate contacts and initiated a Contact Delete process for 10 million subscribers. How could the process be expedited?
- A. Delete any unnecessary Sendable Data Extensions
- B. Stop current delete process and delete smaller groups
- C. Manually delete subscribers in All Contacts
- D. Change the Suppression value to a larger value
正解:B
質問 # 70
A developer needs to configure an Email Send Logging Data Extension for a new business unit. Which option should be used?
- A. Create and ensure it has the name "Send Log"
- B. Salesforce Support should create the data extension
- C. Create using the SendLog Data Extension Template
- D. Create from a copy of an existing Send Log in another business unit
正解:C
質問 # 71
Certification Aid wants to include SSJS in an email message. Which code block can be used for this? Choose
2.
- A. <script language=ssjs></script>
- B. <script runat=serverlanguage=javascript></script>
- C. <script runat=server></script>
- D. <script language=javascript></script>
正解:B、C
解説:
To include Server-Side JavaScript (SSJS) in an email message, you need to use the<script>tag with the runat="server"attribute. This ensures that the script runs on the server side before the email is sent.
* <script runat=server></script>: This is a valid way to include SSJS in an email. It specifies that the enclosed code should be executed on the server.
<scriptrunat="server">Platform.Load("Core","1");varrows
=Platform.Function.LookupRows("DataExtensionName","EmailAddress","[email protected]");</script>
質問 # 72
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. Decimal(9,2)
- B. Number
- C. Text
正解:A
解説:
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.
質問 # 73
A developer is building an integration with the Marketing Cloud API. In which two ways should the Client ID and Client Secret credentials be stored? Choose 2
- A. Set credentials as variables in application source code
- B. Storecredentials in a key management system (KMS)
- C. Pass credentials in URL parameters over HTTPS
- D. Set credentials as environment variables in the application platform
正解:B、D
解説:
To ensure the security of Client ID and Client Secret credentials, they should be stored securely and not exposed in the application source code or URL parameters.
* Environment Variables: Setting credentials as environment variables in the application platform is a
* secure way to handle sensitive information. This method ensures that the credentials are not hardcoded in the source code and can be managed securely by the application platform.
質問 # 74
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 = @var1 + @var2 + @var3
- B. SET @total = Sum(@var1, @var2, @var3)
- C. SET @total = Add(@var1, Add(@var2, @var3))
- D. SET @total = Add(@var1, @var2, @var3)
正解:C
質問 # 75
A developer wants to upload a base64-encoded file to Content Builder using an API Installed Package but receives an insufficient Privileges error. What should the developer check to trobuleshoot the error?
- A. Validate Client Id and Client Secret are correct
- B. Confirm the Component's Channel options are available
- C. Confirm the REST Base URI uses the correct subdomain
- D. Verify the Asset Type Id matches the Asset Type Name
正解:D
質問 # 76
......
2024年最新のリアルな無料Salesforce Marketing-Cloud-Developer試験問題集問題と解答:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-shiken.html
Marketing-Cloud-Developer練習テストエンジン購入前に試そう196試験問題:https://drive.google.com/open?id=1g3A1bohT45GNVvbqKEbNx5EMyRDcu89O