[2025年最新] 高合格率なMarketing-Cloud-DeveloperテストアンサーかつSalesforce Marketing-Cloud-DeveloperテストPDF
完璧Marketing-Cloud-Developer問題集試験問題と解答でパス保証されます
質問 # 56
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. Create a new data extension that includes data retention settings
- C. Update the data extension configuration to include data retention settings.
- D. Run a query to overwrite the rows with six months of data
正解:C
解説:
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.
質問 # 57
Which two AMPscript HTTP functions allow an OAuth token to be passed in a header?
Choose 2 answers
- A. HTTPPost
- B. HTTPGet2
- C. HTTPPost2
- D. HTTPGet
正解:B、C
解説:
TheHTTPGet2andHTTPPost2functions in AMPscript allow you to include additional headers, such as an OAuth token, in your HTTP requests. These functions provide more flexibility for specifying custom headers compared to the standardHTTPGetandHTTPPostfunctions.
* Example:
SET @header = 'Authorization: Bearer your_oauth_token' SET @response =
HTTPPost2("https://example.com/api", @header, "data=example")
質問 # 58
Northern Trail Outfitters uses a number to uniquely identify contacts across different marketing channels.
Which two actions should the developertake to ensure the contacts relate across channels in Marketing Cloud when working with the data model?
Choose 2 answers
- A. Link the numeric field value to the Contact IDin Attribute Groups in Contact Builder.
- B. Use a unique identifier spec fie to each channel and automatically connect then-..
- C. Create Attribute Groups linking the unique identifier to the Contact for each channel.
- D. store the numeric unique identifier value as a Text data type In data extensions.
正解:A、C
解説:
To ensure that contacts relate across different channels in Marketing Cloud, you need to link the unique identifier used across channels to the Contact ID in Contact Builder. This involves creating Attribute Groups and establishing the relationships between the unique identifier and the Contact ID.
* Link the Numeric Field Value: By linking the numeric unique identifier to the Contact ID in Attribute Groups, you ensure that each contact is uniquely identified across channels.
* Create Attribute Groups: Attribute Groups in Contact Builder allow you to map the relationships between different data sources and the Contact object, ensuring that the unique identifier is connected correctly for each channel.
質問 # 59
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 30 days using DateAdd to now
- D. Add one month using DateAdd to now
正解:A
解説:
To ensure the expiration date on a coupon is the last day of the month, the developer shouldfind the first day of the next month and subtract one day (A). This approach guarantees that the expiration date is set to the last day of the current month.
Example AMPscript:
SET @firstDayNextMonth = DateAdd(DatePart(Now(), "MM"), 1, "M") SET @lastDayCurrentMonth = DateAdd(@firstDayNextMonth, -1, "D") References:
* Salesforce Marketing Cloud AMPscript Guide
* Salesforce Marketing Cloud Documentation
質問 # 60
NTO is using an asynchronous SOAP API call to the TriggerSend object to send order confirmation email to their customers. Which API object and attribute should be used to retrieve the status of the API call?
- A. Result Object and EmailAddress
- B. ResultItem Object and OrderID
- C. ResultItem Object and RequestID
- D. Result Object and ConservationID
正解:C
質問 # 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 TOP 1 c.SubscriberKey, c.eventDateFROM _Click c ORDER BY c.eventDate DESC
- C. SELECT c.SubscriberKey, c.eventDate FROM _Click c WHERE c.IsUnique = 1
- D. SELECT c.SubscriberKey, MAX(c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
正解:D
質問 # 62
A developer want to email a subscriber who is currently being processed for a Contact Deletion request. When could the Contact be reintroduced after a Contact Delete operation has started?
- A. After deletion is fully complete
- B. Never
- C. 14 days after deletion process is complete
- D. Anytime
正解:A
解説:
A Contact can be reintroduced into the system onlyafter the deletion is fully complete. The Contact Delete process in Salesforce Marketing Cloud is designed to ensure that all references and data associated with the contact are thoroughly removed. Reintroducing the contact before the process is fully complete would disrupt this cleanup process and potentially lead to data integrity issues.
References:
* Salesforce Marketing Cloud Documentation on Contact Deletion
* Salesforce Marketing Cloud Contact Builder
質問 # 63
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 = LookupRows(Building_Locations", "Address", "Id") ]%%
- B. %: SET @address = Lookup(''Building_locations'', Address'', ''id''@id) ] %%
- C. %% [ SET @address - field(Row(LookupRows("Building_Locations", "Address","Id"), 1),"Address") ]%%
- D. %%[ SET @address = field(Lookcup("Building_Locations"/ "Address", "Id",@Id), "Address") ]%%
正解:D
質問 # 64
When do synchronous REST API calls to Marketing Cloudtime out? Choose 2.
- A. 240 seconds for non-tracking operations.
- B. 120 seconds for non-tracking operations.
- C. 240 seconds for tracking and data retrieve operations.
- D. 300 seconds for tracking and data retrieve operations.
正解:B、D
解説:
Synchronous REST API calls to Marketing Cloud have different timeout limits based on the type of operation:
* 300 seconds for tracking and data retrieve operations: These operations involve more extensive data processing, hence the higher timeout limit.
* 120 seconds for non-tracking operations: Standard non-tracking API calls have a shorter timeout limit.
質問 # 65
A developer needs to import a file nightly that will be used for multiple SQL Query Activities. The file could arrive any time between 2 a.m. and 5 a.m., and one of the requirements is that there is a unique file name for each import, rather than overwriting the file on the FTP site.
Which action should be configured?
- A. File Drop Automation
- B. Scheduled Automation
- C. Dynamic File Import
正解:B
質問 # 66
A developer has a text field in a data extension they want to format using the FormatCurrency AMPscript function. Which two values would return $6.96? Choose 2
- A. $6.96
- B. 6.96
- C. 6.96
- D. 6,961
正解:B、C
解説:
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
質問 # 67
A developer is writing a query to select unique subscribers who opened any emails sent since the beginning of the previous day.
Which query would provide that result?
A)
B)
C)
- A. Option B
- B. Option C
- C. Option A
正解:C
質問 # 68
A developer is making an API REST call to trigger an email send. An accesstoken is used to authenticate the call.
How long are Marketing Cloud v1 access tokens valid?
- A. Each API call requires a new access token.
- B. REST calls do not require an access token.
- C. Access tokens expire after one hour.
- D. Access tokens expire after 24 hours.
正解:C
解説:
In Salesforce Marketing Cloud, access tokens are valid forone hour (D). After one hour, a new access token must be obtained to continue making API calls. This ensures security and helps manage the lifespan of tokens effectively.
References:
* Salesforce Marketing Cloud API Authentication
* Salesforce Marketing Cloud REST API Overview
質問 # 69
Northtrn Trail Outfitters (NTO) wants to import a data file. It will be uploaded at regular intervals to their Enhanced FTP Account where an automation will import the file Into a data extension. NTO requires the file to be encrypted.
Which two file encryption options are supported when importing data files to Marketing Cloud?
Choose 2 answers
- A. PGP encryption
- B. RSA encryption
- C. AES encryption
- D. GPG encryption
正解:A、C
解説:
When importing data files to Marketing Cloud, the supported file encryption options are:
* PGP encryption (A)- Pretty Good Privacy (PGP) encryption is supported for securing files.
* AES encryption (D)- Advanced Encryption Standard (AES) encryption is also supported for file security.
References:
* Salesforce Marketing Cloud File Import Activity
* File Transfer and Encryption Options
質問 # 70
A developer wants to create a complex dynamic email with three different sections and four different possible content blocks In each section. The email will be sent to an audience of over one million contacts.
Which best practice should the developer use to ensure a blank email will not be sent?
- A. Review every possible version using Subscriber Preview
- B. Create separate emails for each version
- C. Send a test of every possible version using Test Send
- D. Confirm every version has default content
正解:D
質問 # 71
A developer used LookupRowsto retrieve data when building a dynamic email.
What should be the next step before using this rowset within a FOR loop?
- A. Use RowCount to ensure the rowset contains data
- B. Close the delimited AMPscrlpt Code Block
- C. Set the rowset to a new array variable
- D. Use Row to return a specific row of the rowset
正解:A
解説:
After usingLookupRowsto retrieve data when building a dynamic email, the next step before using this rowset within a FOR loop is touseRowCountto ensure the rowset contains data (D). This validation ensures that there are rows to iterate over, preventing potential errors or empty iterations in the FOR loop.
Example:
SET @rows = LookupRows("DataExtensionName", "FieldName", "Value") SET @rowCount = RowCount(@rows) IF @rowCount > 0 THEN FOR @i = 1 TO @rowCount DO SET @row = Row(@rows,
@i) /* process each row */ NEXT @i ENDIF
References:
* Salesforce Marketing Cloud AMPscript Guide
* AMPscript RowCount Function
質問 # 72
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. Confirm the REST Base URI uses the correct subdomain
- B. Confirm the Component's Channel options are available
- C. Validate Client Id and Client Secret are correct
- D. Verify the Asset Type Id matches the Asset Type Name
正解:D
質問 # 73
Northern Trail Outfitters is using a mobile campaign to collect email addresses of interested subscribers. Using AMPScript's API functions they will send a confirmation email when an email is texted into their short code.
Which two objects are required to successfully create a TriggeredSend object? Choose 2 answers
- A. Contact
- B. TriggeredSendDefinition
- C. Attribute
- D. Subscribers
正解:A、B
質問 # 74
A developer receives a request to integrate Marketing Cloud with a lead capture tool. The lead capture tool will call the Marketing Cloud API to create a data extension every time a new lead form is published. The created data extension's name should match the name of the form exactly.
Which API feature could the developer use to dynamically create these data extensions?
- A. Creating the data extension using API is not possible
- B. REST API using POST on the /data/v1/customobjectdata/ endpoint
- C. SOAP API using Create Method and the DataExtension Object
- D. REST API using POST on the /interaction/v1/EventDefinitions endpoint with Schema populated
正解:C
質問 # 75
Northern Trails Outfitters is using REST API to send emails to customers after a purchase.
Which considerations should be taken regarding the token used in the API Call?
- A. Make a token API call and re-use the token until the token expires.
- B. Make a token API call before each triggered send API call.
- C. Make a token API call and re-use the token until the next API call fails.
- D. Make a token API call and re-use the token for that subscriber.
正解:A
質問 # 76
Northern Trail Outfitters uses a Send Log and sends more than one million emails per day. They want to execute daily reports on all subscriber activity without impacting send performance.
Which set of best practices should be implemented''
- A. Copy new Send Log records to an Archive data extension, then run reports from the Send Log data extension.
- B. Add a data retention policy to the Send Log. then run reports from the _Opens data view.
- C. Add a data retention policy to the Send Log. then run reports from the Send Log data extension.
- D. Copy new Send Log records to an Archive data extension, then run reports from the Archive data extension.
正解:D
解説:
To execute daily reports on all subscriber activity without impacting send performance, the best practice is tocopy new Send Log records to an Archive data extension, then run reports from the Archive data extension (C). This approach ensures that the reporting activity does not interfere with the performance of ongoing send operations.
References:
* Salesforce Marketing Cloud Send Log Best Practices
* Data Extension Best Practices
質問 # 77
Northern Trails Outfitters is using REST API to send emails to customers after a purchase.
Which considerations should be taken regarding the token used in the API Call?
- A. Make a token API call and re-use the token until the token expires.
- B. Make a token API call before each triggered send API call.
- C. Make a token API call and re-use the token until the next API call fails.
- D. Make a token API call and re-use the token for that subscriber.
正解:A
解説:
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
質問 # 78
Which programming language should be used in email messages? Choose 1.
- A. AMPscript only
- B. Both
- C. Either AMPscript or SSJS
- D. SSJS only
正解:C
解説:
In Salesforce Marketing Cloud, you can use either AMPscript or Server-Side JavaScript (SSJS) in email messages. Both languages are supported and can be used to manipulate data, create dynamic content, and perform other server-side operations.
質問 # 79
......
Marketing-Cloud-Developer試験問題高合格率なMarketing-Cloud-Developer問題集PDF:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-shiken.html
Marketing-Cloud-DeveloperのPDF問題集最近更新された問題:https://drive.google.com/open?id=10fCSZxtIfA4-KHG7_BmFeJZgwe9aJlBq