あなたを合格させるMarketing-Cloud-Developer試験問題集で使おう(更新された196問があります)
Marketing-Cloud-Developer試験問題集でSalesforce練習テスト問題
質問 # 68
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. ValidPhone
- B. PhoneExists
- C. Phone
- D. ContactType
正解:C
質問 # 69
NTO uses data extensions to manage the subscriber information usedfor their email sends, and those sends includes calls to update records with new or different subscriber information. The developer handling these records writes some AMPscript to check and see if the data extension containing those records updated usingan InsertDE() call if the record doesn't yet exist. Why would the developer receive an error stating the application cannot insert a duplicate value for the primary key in the data extension?
- A. The InsertDE function cannot be used with name and value pairs
- B. The InsertDE function cannot be used at send time
- C. The InsertDE function comes after the system added the row as part of the email send
- D. The InsertDE function will always insert two rows into a data extension as part of the call
正解:B
解説:
The error stating that the application cannot insert a duplicate value for the primary key in the data extension occurs becausethe InsertDE function cannot be used at send time. The InsertDE function is designed to insert records into a data extension, but it cannot handle the transactional nature of email sends where records might be added simultaneously.
References:
* Salesforce Marketing Cloud AMPscript InsertDE Function
* Salesforce Marketing Cloud Data Extension Best Practices
質問 # 70
A company has chosen to use the REST API for triggered sends, but they continue to get the following error during their testing: "Unable to queue Triggered Send request. There are no valid subscribers."They were informed that the SOAP API provides more information about the error, and found that their payload did not include a required data extension field.
Which element of the SOAP API response provides this level of detail?
- A. ErrorDescription
- B. ErrorCode
- C. OverallStatus
正解: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
質問 # 71
Certification Aid wants to automate the import of zipped files into a Data Extension. The zip files are placed on the Marketing Cloud Enhanced FTP server every night. Which activity is needed before those files can be imported? Choose 1.
- A. Data Extract activity
- B. File Import activity
- C. File Transfer activity
- D. Data Extension Import activity
正解:C
解説:
Before importing zipped files into a Data Extension, a File Transfer activity is needed to unzip the files on the Marketing Cloud Enhanced FTP server. This activity moves and decompresses the files to make them available for import.
* File Transfer Activity: This activity is used to move files from one location to another and to unzip compressed files.
質問 # 72
A developer created an email using the fasubjectLine variable as the subject line. Due to revisions, the developer declared <>subjectLine in multiple locations throughout the email, including:
Which subject line will be used at the time of deployment?
- A. Enjoy 15% off today
- B. Enjoy 10% off today
- C. Enjoy 20% off today
正解:C
質問 # 73
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. To more quickly remove contact information, use the suppression period length of 14.
- B. Up to one million records can be deleted in each batch.
- C. The deletion process supersedes other automated account activities.
- D. The suppression status does not show for individual contacts until the entire batch processes.
正解:C、D
質問 # 74
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. Pass credentials in URL parameters over HTTPS
- C. Set credentials as environment variables in the application platform
- D. Storecredentials in a key management system (KMS)
正解:C、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.
質問 # 75
Which action could the RaiseError AMPscript function be configured to perform?
- A. Update the subscriber's status
- B. Log the source of the error
- C. Delete the subscriber record
正解:B
解説:
The RaiseError AMPscript function can be configured to log the source of the error. This allows administrators to quickly identify the cause of an issue and take the necessary steps to fix it.
質問 # 76
NTO uses an external CRM which only exports encrypted files. NTO's marketing manager team wants to use some of the subscriber data found in the CRM for future marketing sends. Which three actions should be included in an automation given these requirements? Choose 3
- A. File drop to the SFTP Import directory
- B. File transfer activity to the Import directory for decryption
- C. File transfer activity to the Safehouse for decryption
- D. Import definition to the necessary data extension
- E. File drop to the SFTP Root directory
正解:A、C、D
解説:
To automate the process of importing encrypted files from an external CRM, the following actions should be included:
* File drop to the SFTP Import directory: Place the encrypted files in the SFTP Import directory to trigger the automation.
* File transfer activity to the Safehouse for decryption: Move the encrypted files to the Safehouse for decryption, ensuring the data is securely handled.
* Import definition to the necessary data extension: After decryption, import the data into the relevant Data Extension for use in marketing sends.
質問 # 77
In what order is AMPscript evaluated before an email is sent?
- A. HTML Body, Text Body, Text Body
- B. Text Body, HTML Body, Subject Line
- C. HTML Body, Text Body, Subject Line
- D. Subject Line, HTML Body, Text Body
正解:C
質問 # 78
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 before each triggered send API call.
- B. Make a token API call and re-use the token until the token expires.
- 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.
正解: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
質問 # 79
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
質問 # 80
A developer wants to configure an automation to import files placed on the SFTP shared by a customer's data vendor. The automation will start when a file matching a specific naming pattern is encountered in the Import folder. The first step of the automation is a File Import Activity referencing a substion string for the matching file. Which substituon string represents the name of the file?
- A. %%TRIGGER_FILENAME%%
- B. %%FILENAME_FROM_IMPORT%%
- C. %%FILENAME%%
- D. %%FILENAME_FROM_TRIGGER%%
正解:D
質問 # 81
Northern Trail Outfitters (NTO) wants to prevent competitors from receiving a coupon email. They also want to capture email addresses of competitors who are included in the targeted audience.
Which feature could NTO use to prevent the coupon from being sent and report the email addresses skipped?
- A. Exclusion Script
- B. RaiseError AMPscript function
- C. Try/Catch SSJS functions
- D. Auto-Suppression list
正解:A
質問 # 82
A developer is creating a CloudPage which accepts secure parameters via an email link and will submit those parameters to another CloudPage for data upsert. The page currently captures an Appointment ID parameter passed into it and sets the value to the variable caapptld. The developer does NOT want the Appointment ID to be visible to anyone using the form.
What is the best method to ensure the parameters are passed successfully to the data upsert page?
- A. <input id="apptld" type="textarea" value="%%v(@>apptld)a%%" readonly>
- B. <form action="%%=CloudPagesURL(123,'apptId',@apptId)a%%" methods "post">
- C. <lnput ld=MapptId" type="textarea" value="%%v(@apptld)a%%" hldden>
- D. <form action="%%=MicrositeURL(123,,apptId",@apptId)a%%" method="post">
正解:B
質問 # 83
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/events
- B. POST /interaction/v1/interactions/contactentry
- C. POST/eventDefinitions/key:{key} or /eventDefinitions/{id}
- D. GET /eventDefinitions/key:{key}
正解:A、B
質問 # 84
......
最新でリアルなMarketing-Cloud-Developer試験問題集解答:https://drive.google.com/open?id=1RAiEYyIUUV64UfqgnH1KSrWrqMBtGQeN
あなたをお手軽に合格させるMarketing-Cloud-Developer試験正確なPDF問題:https://jp.fast2test.com/Marketing-Cloud-Developer-premium-file.html