
Marketing-Cloud-Developerリアルな試験問題Marketing-Cloud-Developer練習問題集
厳密検証されたMarketing-Cloud-Developer試験問題集と解答で無料提供のMarketing-Cloud-Developer問題と正解付き
この試験は、Salesforce Marketing Cloudに関連する広範なトピックをカバーしており、メールマーケティング、モバイルメッセージング、ソーシャルメディア、データ管理、分析などが含まれます。 また、Marketing Cloud APIやAMPscript、JavaScriptなどのスクリプト言語を使用してカスタムソリューションを開発する能力をテストします。
Salesforce Marketing-Cloud-Developer 認定試験は、マーケティングクラウド開発の専門家の知識とスキルをテストするために設計されています。この認定は、Salesforceテクノロジーを使用してマーケティングクラウドソリューションを構築および実装した経験を持つ開発者を対象としています。この試験は、データモデリング、メッセージング、自動化、および統合など、マーケティングクラウド開発のさまざまな側面の理解を候補者が評価するために設計されています。
質問 # 76
A developer wants to inject a Contact into a journey using API. What method and route would be used to accomplish this?
- A. Post / contacts/v1/contacts
- B. Post/ interaction/ v1/events
- C. Post/v1hub/datevents/key:[key} /rows / {primaryKeys
- D. Post/interaction/v1/interactions
正解:B
質問 # 77
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 decrypt the import file on the Safehouse.
- B. To move the import file from the Enhanced FTP server to 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.
正解:A、C
質問 # 78
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. Outbound SMS template and Automation Send Method
- C. CreateSMSConservation AMPscript function
- D. InsertData AMPscript function to add the subscriber to a MobileConnect list
正解:A
質問 # 79
A developer wants to set a variable to use a field from a Sendable Data Extension.
Which two options could be used in an AMPscript block to set the variable as a 'First Name" field from a Sendable Data Extension usedto send the email? Choose 2 answers
- A. SET @firstName = attributeValue (''First Name'')
- B. SET @firstName = ''First Name'']
- C. SET @firstName = [First Name]
- D. SET @firstName = %%First Name%%
正解:A、D
解説:
To set a variable to use a field from a Sendable Data Extension in an AMPscript block, the following options can be used:
* SET @firstName = %%First Name%% (B)- This syntax directly references the field value within AMPscript.
* SET @firstName = AttributeValue('First Name') (C)- This function retrieves the value of the specified attribute (field) for the current subscriber context.
References:
* Salesforce Marketing Cloud AMPscript Guide
* AttributeValue Function
質問 # 80
A developer wants to create an HTML table where rows will alternate background colors between white and red. The developer does not know how many rows will be sent within each email, and decides to use a loop and assigns the RowCount() of the table rows to the variable @numerator. What is the recommended AMPscript logic to determine the background color of each table row within the loop?
- A. %%[IF SUBSTRING(DIVIDE(@numerator,2),1) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
- B. %%[IF @numerator/2 = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
- C. %%[IF MOD(@numerator,2) = 1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
- D. %%[IF DIVIDE(@numerator,2) =1 THEN SET @color = 'Red' ELSE SET @color = 'White' ENDIF]%%
正解:D
質問 # 81
Northern Trails Outfitters (NTO) developers want to use the Transactional Messaging API to send email receipts to customers.
What is the first step required to send using the API?
- A. POST to /messaging/vl/email/messages/ with clientjd
- B. Request a token using the v2/authorize endpoint
- C. Request a token using the vl/requestToken endpoint
- D. POST to /messaging/vl with clientjd and client_secret
正解:C
質問 # 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. <lnput ld=MapptId" type="textarea" value="%%v(@apptld)a%%" hldden>
- B. <input id="apptld" type="textarea" value="%%v(@>apptld)a%%" readonly>
- C. <form action="%%=CloudPagesURL(123,'apptId',@apptId)a%%" methods "post">
- D. <form action="%%=MicrositeURL(123,,apptId",@apptId)a%%" method="post">
正解:C
質問 # 83
Which SSJS library can be used in email messages? Choose 1.
- A. Core
- B. Both
- C. Platform
- D. None
正解:C
質問 # 84
A marketer is planning a weekly promotionalsend.
Which two types of data extensions could be sent to?
Choose 2 answers
- A. Send Log Data Extension
- B. Synchronized Data Extension
- C. Sendable Data Extension
- D. Salesforce Data Extension
正解:C、D
解説:
For a weekly promotional send, the marketer can use:
* Sendable Data Extension: These are standard data extensions that are configured for sending and contain the necessary fields like Email Address and Subscriber Key.
* Salesforce Data Extension: These are data extensions that are synchronized with Salesforce objects and can be used for sending emails.
質問 # 85
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. _Subscribers
- D. _Click
正解:C、D
解説:
To create a query that aggregates clicks grouped by the language of the recipient, the developer needs to use Data Views that store subscriber and click information. The required Data Views are:
* _Subscribers (A)- This Data View contains information about subscribers, including their profile attributes such as language.
* _Click (D)- This Data View contains information about click events for email messages, which can be used to aggregate clicks.
The query would join these Data Views on a common identifier (e.g., SubscriberKey) and group the results by the language attribute.
References:
* Salesforce Marketing Cloud Data Views
* SQL Reference Guide
質問 # 86
Which statements are true regarding the Marketing Cloud SOAP API? Choose 2.
- A. More than 2000 SOAP calls can be performed per minute.
- B. Most SOAP calls can be synchronous or asynchronous.
- C. Uses JSON in request and response body.
- D. Uses XML in request and response body.
正解:B、D
質問 # 87
Certification Aid wants to include SSJS in an email message. Which code block can be used for this? Choose
2.
- A. <script runat=serverlanguage=javascript></script>
- B. <script language=ssjs></script>
- C. <script runat=server></script>
- D. <script language=javascript></script>
正解:A、C
質問 # 88
A marketer is planning a weekly promotional send.
Which two types of data extensions could be sent to?
Choose 2 answers
- A. Send Log Data Extension
- B. Synchronized Data Extension
- C. Salesforce Data Extension
- D. Sendable Data Extension
正解:B、D
質問 # 89
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 BatchID
- B. EmailAddress and JobID
- C. SubscriberKey and JobID
- D. SubscriberID and BatchID
正解:C
解説:
When logging unsubscribe events from a CloudPage using the LogUnsubEvent Execute Call, it's crucial to capture and provide both the SubscriberKey and the JobID. The SubscriberKey uniquely identifies the subscriber, while the JobID identifies the specific email job from which the subscriber is unsubscribing.
* SubscriberKey: Identifies the subscriber in the Marketing Cloud.
* JobID: Identifies the email job that triggered the unsubscribe event.
質問 # 90
A developer needs to push real-time updates of the company's product catalog to a data extension.
Which two API options are available? Choose 2 answers
- A. Use the DataExtensionObject SOAP object
- B. Use the DataExtension SOAP object
- C. Upload a file to the Enhanced SFTP for import
- D. Use the /hub/vl/aataevents REST route
正解:A、D
質問 # 91
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 each data extension has the required Email Address field populated
- B. Verifying all data extensions have a sendable value
- C. Assigning data relationships and primary keys across all channels
- D. Verifying data address marketing needs
- E. Normalizing data to reduce redunancy
正解:B、C、D
質問 # 92
A developer needs to configure a process that can store encrypted data from Marketing Cloud as a file on an external server. What steps should the developer take?
- A. Shield Platform Encryption is required for encrypted data export
- B. Data Extract > File Transfer with Marketing Cloud Public Key
- C. Data from Marketing Cloud cannot be encrypted
- D. Create PGP Key > Data Extract > File Transfer with PGP checked
正解:B
質問 # 93
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. LookupRowCount
- B. DataExtensionRowCount
- C. RowCount
正解:C
質問 # 94
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
質問 # 95
NTO wants to exclude sending an email at send time to those with a record on the 'Exclude' Data Extension.
The primary key on this data extension is Subscriber Key. How would a developer write the Exclusion Script?
- A. Rowcount (LookupRows('Exclude',SubsciberKey,_SubscriberKey) >0
- B. Rowcount (LookupRows('Exclude','SubscriberKey,_SubscriberKey) >1
- C. Lookup ('Exclude','EmailAddress','SubscriberKey',SubscriberKey)
- D. Lookup ('Exclude','SubscriberKey', 'EmailAddress', emailddr_)
正解:A
質問 # 96
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. Two
- B. Three
- C. One
- D. None
正解: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.
質問 # 97
......
無料でゲット!高評価Salesforce Marketing-Cloud-Developer試験問題集を今すぐダウンロード!:https://jp.fast2test.com/Marketing-Cloud-Developer-premium-file.html
あなたを合格させるMarketing-Cloud-Developer無料最新問題集でSalesforce練習テストしよう:https://drive.google.com/open?id=1hGC_yHyju2Jlli-MS4W0-9UVYFnOkD8M