Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

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?

A.

Use loginfo in the JS activity

B.

Check variable tab within the workflow properties

C.

Display the target and click the schema tab

A developer develops a workflow where two activities are used in the beginning, one below the other. The first is to query all the audiences living in Canada, and the second is to query audiences with gender as male. A developer added a third activity, which is Exclusion, and added both the queries' results to it. What would be the end result?

A.

All males living in Canada

B.

All males who do not live in Canada

C.

All recipients living in Canada who are not male

A customer has a custom CRM system that holds all profiles used for marketing campaigns. The customer wants to have the data available in Adobe Campaign Classic and use it for marketing campaigns. The CRM system is relying on HTTP communication to communicate with other systems. In which two ways can the CRM system push profiles to Adobe Campaign Classic? (Choose two)

A.

SOAP

B.

External Account

C.

REST

D.

SFTP

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)

A.

Xtk.queryDef.create()

B.

Xtk.workflow.execute()

C.

Xtk.queryDef.Update()

D.

Xtk.session.write()

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?

A.

for (var i = 0; i < query.length; i++) { logInfo(query[i].$email); }

B.

for (var i = 0; i < query; i++) { logInfo(query[i].$email); }

C.

for (var i = 0; i < query.len; i++) { logInfo(query[i].$email); }