[2024年04月] 最新のSalesforce Marketing-Cloud-Developer認定練習テスト問題
確認済みMarketing-Cloud-Developer問題集と解答で一年間無料最速更新
Salesforce認定マーケティングクラウド開発者試験は、マーケティングクラウドに関連する開発者の知識とスキルの包括的な評価です。この試験では、マーケティングクラウドアーキテクチャ、データモデリング、スクリプト言語、API、自動化スタジオ、ジャーニービルダーなど、さまざまなトピックをカバーしています。この試験に合格することにより、開発者はマーケティングクラウドソリューションの開発に関する専門知識を実証し、認定されたSalesforce Professionalとして認識を獲得できます。
質問 # 86
A developer is configuring a File Drop Automation and wants to use a Filename Pattern to allow for timestamps on the file. The file name will always start with the month and day (e.g. MAY15) the file is dropped onto the SFTP site.
Which two configurations should be used for the automation to successfully start? Choose 2 answers
- A. %%MMMMdd%%
- B. Begins With operator
- C. Ends With operator
- D. %%Month%%%%Day%°/o
正解:B、D
質問 # 87
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. GPG encryption
- C. RSA encryption
- D. AES encryption
正解:A、B
質問 # 88
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
質問 # 89
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, MAX(c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
- C. SELECT c.SubscriberKey, c.eventDate FROM _Click c WHERE c.IsUnique = 1
- D. SELECT TOP 1 c.SubscriberKey, c.eventDate FROM _Click c ORDER BY c.eventDate DESC
正解:B
質問 # 90
Contact Builder can be used to create a relational model of an organization's data within Marketing Cloud. Which three factors should be taken into consideration when preparing data to be used in Contact Builder? Choose 3 answer
- A. Verifying all data extensions have a sendable value
- B. Normalizing data to reduce redunancy
- C. Verifying data address marketing needs
- D. Verifying each data extension has the required Email Address field populated
- E. Assigning data relationships and primary keys across all channels
正解:A、C、E
質問 # 91
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. ContactType
- C. PhoneExists
- D. ValidPhone
正解:C
質問 # 92
A developer is making an API REST call to trigger an email send. An access token is used to authenticate the call.
How long are Marketing Cloud v1 access tokens valid?
- A. Access tokens expire after 24 hours.
- B. Each API call requires a new access token.
- C. Access tokens expire after one hour.
- D. REST calls do not require an access token.
正解:C
質問 # 93
A developer wants to expand their knowledge of Query Activities. They want to identify email addresses that have bounced in the last 30 days, along with the Bounce Reason and some additional subscriber specific data; however, the SQL they have written does not return any records. Below is the SQL statement:
What updates should be made to ensure this SQL statement returns the desired results?
- A. Marketing Cloud _Bounce data view does not contain EmailAddress. They should join on SubscriberlD.
- B. Marketing Cloud Data Views only hold 20 days worth of data. They should narrow scope of DateAdd function.
- C. Marketing Cloud does not allow use of GETDATE function. They should define a specific date.
- D. Marketing Cloud does not allow DateAdd functions in Query Activities. They should define a specific date.
正解:A
質問 # 94
A developer identified a use case where a triggered send of an email is needed. The developer already successfully set up authentication with a Client ID and Client Secret has used them in several REST calls. When the REST call is made, a "401 Unauthorized" error is returned. What is the first thing the developer should check?
- A. The email interaction has been published.
- B. The send permissions have beeen granted for the Client ID and Client Secret within Installed Packages.
- C. The email interaction has beed started
- D. The automation permissions have been granted for the Client ID and Client Secret within Installed Packages.
正解:B
質問 # 95
A developer wants a link to be dynamic based on subscriber attributes. Rather than create numerous links, the developer uses AMPscript to set the link's value as a variable. The variable will be used within the <a> tag.
What should thedeveloper do within the <a> tag to ensure clicks are tracked for the variable? Choose 2
- A. Ensure the Conversion attribute is 'true'
- B. Include a variable for the Alias attribute
- C. Wrap the variable in a v function
- D. Wrap the variable in a RedirectTo function
正解:D
質問 # 96
A developer wants to trigger an SMS message to a subscriber using a form published on CloudPages. How should the SMS message be triggered once the subsceriber submits the form?
- A. requestToken and messageContact REST API objects
- B. CreateSMSConservation AMPscript function
- C. InsertData AMPscript function to add the subscriber to a MobileConnect list
- D. Outbound SMS template and Automation Send Method
正解:A
質問 # 97
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 Extensionmust be in a Population.
- B. The Data Extension must be sendable.
- C. The Data Extension must be created in Email Studio.
- D. The Data Extension must be in an Attribute Group.
正解:A
質問 # 98
A developer needs to know how many records are contained in a particular data extension. This will dictate what is displayed on a landing page.
Which AMPscript function returns the number of rows in a specified data extension?
- A. DataExtensionRowCount
- B. RowCount
- C. LookupRowCount
正解:B
質問 # 99
Certification Aid wants to add new customers to a cross-channel welcome campaign when they register on the company website. Which API should be used for this? Choose 1.
- A. Event Notification API
- B. Transactional Messaging API
- C. Personalization Builder API
- D. Journey Builder API
正解:B
質問 # 100
A marketer is troubleshooting why an email send's tracking information is not available in Sales Cloud. The marketer confirms Marketing Cloud Connect is installed properly. What should be confirmed next to continue troubleshooting the send's tracking information?
- A. The tracking destination folder was set to My Tracking
- B. The email was sento to the All Subscribers list
- C. The audience was built using a Triggered Send Data Extension template
- D. The audience was a Salesforce Data Extension containing the appropriate SFID
正解:D
質問 # 101
Certification Aid wants to import an encrypted CSV file from the Marketing Cloud Enhanced FTP server. Which two File Transfer activities are needed to achieve this? Choose 2.
- A. To move the import file from the Enhanced FTP server to the Safehouse
- B. To decrypt the import file on the Safehouse.
- C. To move the import file from the Safehouse to Marketing Cloud.
- D. To decrypt the import file on the Enhanced FTP server.
正解:B、C
質問 # 102
A sendable data extension with a text field named 'Balance' contains the value S6.96 for a particular record. The following AMPscript statement is included in an email:
IF (Balance > 6.00) THEN
SET @Result = 'Balance is more than $6.00
ENDIF
Why would this IF statement yield unintended results?
- A. Balance is a protected keyword.
- B. Double quotes should be used instead of single quotes.
- C. The comparison should use the < operator.
- D. The operands are not the same data type.
正解:D
質問 # 103
From which business unit could the Contact Delete feature be used within an Enterprise 2.0 account?
- A. Any business unit
- B. Only in Agency accounts
- C. The business unit where the contact was introduced
- D. The Parent account
正解:C
質問 # 104
......
Salesforce Marketing-Cloud-Developerの認定を取得することは、マーケティングテクノロジーの分野でキャリアを進めたい開発者にとって、貴重な資産となる場合があります。この認定は、マーケティングクラウドアプリケーションの開発と保守に高度な専門知識があることを示し、競争力のある就職市場で開発者を際立たせることができます。
Marketing-Cloud-Developer認定試験に備えるために、候補者はSalesforceが提供するさまざまなトレーニングリソースを活用することができます。これらのリソースには、オンラインコース、ウェビナー、スタディガイドが含まれます。さらに、Marketing Cloudでの実務経験を積んだり、実践試験を受けたりして、実際の試験体験をシミュレートすることもできます。
最新の2024年最新の実際に出ると確認されたMarketing-Cloud-Developer問題集で100%無料Marketing-Cloud-Developer試験問題集:https://www.passtest.jp/Salesforce/Marketing-Cloud-Developer-shiken.html
無料提供中2024年最新の無料更新されたSalesforce Marketing-Cloud-Developer試験問題と解答:https://drive.google.com/open?id=15gphkhwa4K3Nx3c-v1H8BDNvrJJQslDr