One attempt, eighteen questions, no time limit. Pick the best answer for each; the explanations stay hidden until you submit. There is no save state — refresh to start over. Aim for 80%.
s.tl()), which custom variables are sent to
the server by default if you set them on s but do nothing else?t() and tl().
Page views carry everything on s; link hits carry nothing custom unless you
whitelist via linkTrackVars and linkTrackEvents.
&v15=summer-sale&c4=telescopes&events=event1%2Cevent2%3D12.50.
Which variables fired?v = eVar, c = prop, the events string uses comma to
separate events and = to attach a numeric value. The percent-encoding decodes
to event1,event2=12.50.
products
string, so revenue per SKU is credited to that SKU's own source. A standard eVar would
credit both products to whichever campaign value was most recent.
= is for numeric values;
comma separates events; semicolon delimits product fields. The purchaseID
property also handles purchase-specific serialization.
linkTrackVars
whitelists them. Allocation only matters once the value is on the hit; it's not on the hit
yet.
s.t() with
the new pageName. Reports show the campaign eVar15 you set on landing is
showing up on every subsequent page view. Why?s. The same JavaScript object lives
for the entire session. Without s.clearVars() at the top of each virtual page
view, every prior assignment leaks onto every later hit.
_satellite.setDebug(true) in the console.
Which of these does Launch not log to the console afterwards?setDebug exposes.
pe=lnk_d&pev1=https%3A%2F%2Fcdn.example.com%2Fspec.pdf&pev2=PDF%20%C2%B7%20Spec%20Sheet.
What kind of hit is this?pe=lnk_d identifies a download link; pev1 is the URL,
pev2 is the name passed to s.tl(). Exit would be lnk_e,
custom would be lnk_o.
AEPLifecycle's
automatically-tracked metrics include?dil.js drops out of the page.
The Web SDK datastream is the modern equivalent for many products at once.
Scored well? You're ready to ship implementations. Scored lower? The explanations above pinpoint where to re-read — every question maps to a specific module. There is no "pass / fail" — this is your own diagnostic. Replay it after a week.