Adobe AD0-E330 Practice Test - Questions Answers, Page 2
List of questions
Related questions
A Campaign Classic developer wants to monitor which variables are being passed through a workflow to begin debugging a JavaScript activity. When executing the workflow, which action should the developer take to show the variables that are being passed throughout the workflow?
Audit message in the journal
Keep the result of interim populations between the two executions
Display progression information
Display the tasks and log
A customer needs an automated process to send event notifications every 15 minutes to a group of users. No user should receive the same notification twice. What activities should the Adobe Campaign Classic developer use in the Campaign workflow to perform this?
Scheduler and Test activity before targeting
Wait activity and Test activity after targeting
Wait activity and Test activity before targeting
Scheduler and a Test activity after targeting
A developer needs to insert a JavaScript activity that will be used to query the temp table in a workflow. How should the developer verify the name of the temporary schema to be used in JavaScript?
Use loginfo in the JS activity
Check variable tab within the workflow properties
Display the target and click the schema tab
An Adobe Campaign Classic developer needs to follow best practices for workflow implementation. Which three options should the developer select? (Choose 3)
Purge logs when they are not needed anymore
Check 'Keep Interim Results' option in a workflow property
Avoid leaving workflows in a paused state
Do not schedule workflows to run more than every 15 minutes
A developer wants to retrieve data from multiple schemas and insert data into the temp table within a workflow. Which two methods should be used to perform this operation? (Choose 2)
Xtk.queryDef.create()
Xtk.workflow.execute()
Xtk.queryDef.Update()
Xtk.session.write()
What is a use case for a custom target mapping in Adobe Campaign Classic?
Include seed addresses in the delivery
Retarget on the basis of segmentation
Store the address in an individual table
Review the code below and mark the correct option:
javascript
Copy code
var query = NLWS.xtkQueryDef.create({
queryDef: {
schema: 'nms:recipient',
operation: 'select',
lineCount: '5',
select: { node: [
{expr: '@firstName'},
{expr: '@lastName'},
{expr: '@email'}
]}
}
}).ExecuteQuery().getElements();
What would be the correct code to retrieve the email for each record?
for (var i = 0; i < query.length; i++) { logInfo(query[i].$email); }
for (var i = 0; i < query; i++) { logInfo(query[i].$email); }
for (var i = 0; i < query.len; i++) { logInfo(query[i].$email); }
In V8 Adobe Campaign Classic, data from local PostgreSQL tables is not being replicated to the Snowflake database. Which OOTB workflow should the developer look at to troubleshoot the issue?
Replicate Staging Data (ffdaReplicateStagingData)
Replicate Reference Tables (ffdaReplicateReferenceTables)
Replicate FFDA Data (fdaReplicate)
A developer wants to send an alert to an operator that contains the names of profiles who opened the newsletter. The profile's first and last name fields are linked to the recipients targeting dimension, whereas the alert activity is linked to the operator targeting dimension. What activities would the developer need to send the notification?
Query > Test > Alert
Query > Enrichment > Test > Alert
Query > JavaScript Code > Alert
Query > JavaScript Code > Test > Alert
A developer identifies that click and open data has not been updated for a long time. Which OOTB technical workflow should be checked in order to troubleshoot this issue?
Task notification (taskMgt)
Tracking (tracking)
Update event status (updateEventStatus)
Question