表示モード
画像位置
文字位置
理解度の自動記録
Q1Salesforce Mc Engagement Consultant
Q1. A dental clinic wants to automate appointment reminders for its patients.
The reminder should be sent at 10:00 AM on the day before the appointment, and the appointment record of each patient who receives a reminder email should be updated to reflect a “sent” status.
Which solution is recommended?
Show answer
Correct answer: B. Create a journey using a CRM date-based entry source, send the reminder with a Journey Builder activity, and update the record on the CRM side.
For a “time-specific delivery anchored to a particular date” such as the day before the appointment, a date-based entry source in Journey Builder that uses Salesforce data is the best fit.This entry source can automatically enroll contacts into the journey relative to a CRM date field, such as one on the appointment object, and its start time can be specified, for example 10:00 AM.
In addition, a Salesforce update activity within the journey can directly update the original CRM record when the reminder is sent, so the requirement can be met with a single journey.
With the Data Extension or report starting points in options A and D, automatic date-based enrollment and updating the original record are difficult to achieve, and C is a daily bulk update that does not match the “10:00 AM the day before” granularity.
Create a Date-Based Event Entry | Salesforce Help
Q2Salesforce Mc Engagement Consultant
Q2. An outdoor-goods retailer wants to run a campaign that delivers coupons every week.
After segmenting the audience using data from multiple Data Extensions, the target audience is approximately 200,000 subscribers.
If they want to send a reminder three days later at the optimal send time for each subscriber, which solution should they use?
Show answer
Correct answer: B. Journey Builder
Journey Builder is the best fit for a multi-step campaign that sends a reminder after an initial send.Journey Builder supports Einstein Send Time Optimization (STO), which automatically delivers at the optimal time for each subscriber.
Therefore, the requirement to place a reminder three days after the initial send and deliver it at the optimal time tailored to each subscriber can be achieved with a single journey.
Automation Studio alone, in option C, is not suited to step designs with waits or to individual optimization, and configurations that also use Interaction Builder or Automation Studio, as in A and D, add unnecessary complexity and are redundant relative to the requirement.
Einstein Send Time Optimization for Journey Builder | Salesforce Help
Q3Salesforce Mc Engagement Consultant
Q3. A company uses Marketing Cloud Connect to run Triggered Sends from Salesforce.
The status of a send has become “failed.”
To isolate the problem, what should the consultant do first?
Show answer
Correct answer: A. Check the Apex jobs in Sales Cloud Setup.
Triggered sends originating from Salesforce CRM are processed through Apex jobs.Therefore, when a send fails, the first step to isolate the issue is to open the Apex jobs in Salesforce Setup and review the error details, such as authentication errors, invalid data, or configuration problems.
Because the specific cause of the failure is recorded here, this is the most appropriate starting point for diagnosis.
Manually clearing the OAuth token in option B or changing to Scope by User in C are ad hoc actions taken before identifying the cause, and assigning the standard user profile in D is not a common cause of failure.
The standard approach is to check the logs first and then take action.
Triggered Sends | Salesforce Help
Q4Salesforce Mc Engagement Consultant
Q4. A data team wants to automatically synchronize the unsubscribe status of subscribers within an Enterprise account to an external CRM as a single aggregated file.
They need to retrieve unsubscribe data spanning all child business units.
Which system data view should they use?
Show answer
Correct answer: D. _BusinessUnitUnsubscribes
In an Enterprise 2.0 account, to retrieve unsubscribe status across all business units (BUs), use the system data view _BusinessUnitUnsubscribes._BusinessUnitUnsubscribes provides, across all BUs, which subscriber unsubscribed in which BU and when, making it ideal for enterprise-wide aggregated reporting and synchronization to an external CRM.
The _Unsubscribe view in option C handles individual unsubscribe events but does not meet the requirement of cross-BU aggregation; _Complaint in A is for complaints (spam reports) and _Subscribers in B is the subscriber list data view, so both serve different purposes.
Data View: BusinessUnitUnsubscribes | Salesforce Help
Q5Salesforce Mc Engagement Consultant
Q5. A customer runs a rich Sales Cloud org with many custom objects.
Until now, they have extracted their target audience with complex reports that reference many custom objects, then exported it to a separate email system for delivery.
When adopting Marketing Cloud Connect, they want to simplify the delivery process in Marketing Cloud while keeping additional configuration to a minimum.
To meet this condition, what should the consultant recommend?
Show answer
Correct answer: D. Continue to create reports in Sales Cloud, and select and send those reports from the Marketing Cloud side.
With Marketing Cloud Connect, you can send email directly to an audience defined by an existing Salesforce report without synchronizing all custom objects.This keeps additional configuration to a minimum while leveraging the complex reports they have been using as-is, so it best matches the condition.
Synchronizing all custom objects and recreating reports in option C imposes a heavy configuration burden, and the import in A or building a journey in B also introduce unnecessary effort or separate design.
Option D, which simply selects an existing report from Marketing Cloud, is the simplest method that meets the requirement.
Marketing Cloud Sends to Campaigns or Reports | Salesforce Help
Q6Salesforce Mc Engagement Consultant
Q6. A small restaurant franchise company is planning to adopt Marketing Cloud to support its franchise owners.
The headquarters manages the ad copy and subscriber lists, while each franchise store owner adds region-specific customized messaging to the marketing campaigns.
Which hierarchy configuration should be recommended?
Show answer
Correct answer: B. One parent business unit and one child business unit per franchise owner.
A configuration with the headquarters as the parent business unit and each franchise owner as its own independent child business unit is appropriate.The parent BU centrally manages shared elements such as subscriber management and brand assets, while in each child BU the owner can edit only region-specific messaging within their own scope.
This properly separates permissions and data, so each owner cannot change or view assets managed by headquarters.
Options A and C cannot separate owners individually, and setting up a parent BU per owner as in D breaks headquarters’ centralized management, so none of them meet the requirements.
Business Units in Marketing Cloud Engagement | Salesforce Help
Q7Salesforce Mc Engagement Consultant
Q7. A consultant configured a triggered send definition in Sales Cloud for a customer using Marketing Cloud Connect.
The trigger is set on a custom object called “Shipments,” and triggered sends are enabled in Setup.
Which two configuration requirements should be considered during troubleshooting? (Choose 2)
Show answer
Correct answer: C. The Shipment object requires a Lookup relationship to a Lead or Contact. / D. An Apex trigger is created on the Shipment object.
Two configurations are required to make a triggered send originating from a custom object work.First, the target object must have a Lookup to a Lead or Contact so it can identify the recipient subscriber.
In addition, an Apex trigger that fires the triggered send via the Marketing Cloud Connect package must be created on that object.
The display in the Account related list in option A and the Master-Detail relationship from Contact in B are not conditions that fire the send, and the reference direction is also reversed, so neither qualifies as a troubleshooting requirement.
Triggered Sends | Salesforce Help
Q8Salesforce Mc Engagement Consultant
Q8. A marketer wants to personalize emails with real-time weather information retrieved from the Sunny Sky API.
Which tool should be used to parse the response and display it within the email?
Show answer
Correct answer: D. GTL
GTL (Guide Template Language) is a language that can process JSON responses directly within Marketing Cloud’s Content Builder.Because it can parse and display JSON-format weather information returned by an external API such as the Sunny Sky API within the email content, without going through an external service or complex scripting, it is ideal for real-time personalization.
Node.JS in option A is a server-side runtime environment, Apex in B is a language on the Salesforce side, and while SSJS in C can also be used, GTL is the most suitable, standard choice for handling JSON within an email template for personalization.
Appendix: Use GTL with AMP for Email | Salesforce Help
Q9Salesforce Mc Engagement Consultant
Q9. A company’s account is configured as Multi-Org in order to leverage two Salesforce CRM accounts.
In one business unit, they want to disconnect the currently connected sandbox instance and reconnect to the production instance.
To avoid disrupting functionality, which additional configuration change should be made?
Show answer
Correct answer: B. Manually delete the existing user mappings, attribute mappings, and tracking subscriptions.
When disconnecting an existing Salesforce org in a Multi-Org configuration, before connecting to the new org, you must manually delete all user mappings, attribute mappings, and tracking subscriptions tied to the original instance.This leaves no conflicts and allows a clean reconnection to the new production org, preventing disruption of functionality.
Options A and D are not essential preparatory steps for the disconnect and reconnect itself, and renaming/deleting Data Extensions as in C is unnecessary and carries risk, so it is not the correct approach.
Multi-Org Account Configuration in Marketing Cloud Connect | Salesforce Help
Q10Salesforce Mc Engagement Consultant
Q10. A retail company receives data from its POS (point-of-sale) system every night.
The files are placed on Enhanced FTP, but neither the time they are placed nor the file naming convention is consistent.
Which two methods should be used to configure an automation that ingests these files every night? (Choose 2)
Show answer
Correct answer: B. %%BASEFILENAME_FROM_FILEDROP%% / D. File Drop Starting Source
Because neither the placement time nor the naming convention of the file is consistent, a Scheduled starting source that fixes the time cannot be used.Instead, using a File Drop Starting Source lets you start the automation the moment a file is placed on FTP.
Furthermore, to handle the variable file name, use %%BASEFILENAME_FROM_FILEDROP%%, which dynamically receives the name of the dropped file.
BASEFILENAME_FROM_TRIGGER in option A is not the correct variable for file drops, and the Scheduled starting source in C presumes a fixed time, so it does not fit the requirement where both naming and timing are indeterminate.
Configure a File Drop Automation | Salesforce Help
