Marketing-Cloud-Developer Exam Question 46

A developer wants a link to be dynamic based on subscriber attributes. Rather than create numerous links, the developer uses AMPscript to set the link's value as a variable. The variable will be used within the <a> tag. What should the developer do within the <a> tag to ensure clicks are tracked for the variable? Choose 2
  • Marketing-Cloud-Developer Exam Question 47

    Which two AMPscript HTTP functions allow an OAuth token to be passed in a header?
    Choose 2 answers
  • Marketing-Cloud-Developer Exam Question 48

    A developer wants to aggregate monthly energy usage data over a four month period for each subscriber within an email. The monthly usage values are stored in variables for each month in the following way:
    How should the developer use AMPscript to generate the total?
  • Marketing-Cloud-Developer Exam Question 49

    A developer wants to inject a Contact into a journey using API. What method and route would be used to accomplish this?
  • Marketing-Cloud-Developer Exam Question 50

    A developer wants to create a CloudPage which is linked from an email. %%[SET @point = RequestParameter(x) SET @value = 5 IF Length(@point) > 1 THEN SET @value = 1 ELSEIF Length(@point)>2 THEN SET @value = 2 ELSEIF Length(@point) >3 THEN SET@value = 3 ELSEIF Length(@point) >4 THEN SET @value = 4 ENDIF]%% Which is the expected value of @value if x = 'Tacos'?