A developer created a landing page in CloudPages which return unique content when subscriber data is located on a related data extension. The developer does not know if all subscribers have rows in the related data extension, and want default content to render if no subscriber data is found on the related data extension. Which best practice should the developer follow to control the unique and default content?
A. Use the RowCount function and an IF statement
B. Use the Lookup, Row and Field functions
C. Use the LookupOrderRows and Row functions
D. Use the DataExtensionRowCount function
A developer has a text field in a data extension they want to format using the FormatCurrency AMPscript function. Which two values would return $6.96? Choose 2
A. 6,961
B. 6.96
C. $6.96
D. 6.96
What is the purpose of the IF statement below?

A. To handle when no row is returned by the LookupRows function
B. To handle when thesubscriber is in a held status
C. To handle when images are broken
D. To handle when there are multiple records in the data extension for the subscriber
A marketer is planning a weekly promotional send.
Which two types of data extensions could be sent to? Choose 2 answers
A. Synchronized Data Extension
B. Sendable Data Extension
C. Salesforce Data Extension
D. Send Log Data Extension
Clock Kicks would like to encrypt and store formdata submitted from a CloudPage in a data extension using AMPscript. Which three encryption options could be used when creating a new key in Key Management? Choose 3
A. SAML
B. Asymmetric
C. RSA
D. Salt
E. Symmetric
How many month of data can a developer query from the tracking data views (_Sent, _Open, _Click)?
A. Six Months
B. One Month
C. 12 Months
D. There is no limit
Northern Trail Outfitters has an Enterprise 2.0 account with 15 business units. Each business unit can access a Shared Data Extension named 'Inventory', which contains the details for each product. A Boolean field named'InStock' indicates whether the item is available.
Which snippet of AMPscript would return all products which are currently available?
A. LookupRows ('Ent. Inventory*, 'true', 'InStock')
B. LookupRows ('Ent. Inventory*, itemName, 'InStock', 'true')
C. LookupRows ('Ent. Inventory*, 'InStock', 'true', )
D. LookupRows ('Inventory*, 'InStock' 'true',)
A developer wants to use the RaiseError Ampscript function when a subscriber does not have the necessary data to build an email. Which two outcomes are possible using this function? Choose 2 answer
A. The send fails
B. The email is not sent to the particular subscriber
C. An error message is sent to the From Address used in the email
D. The send is retried
A developer receives Error Code 5 when performing a SOAP API call. The error states: "Cannot Perform 'Post' on objects of type 'SentEvent'".
What could be the issue?
A. SOAP does not support POST; use REST
B. Theauthentication token has expired.
C. It may be a temporary network issue.
D. 'SentEvent' is not able to be updated using SOAP.
Customer data has been imported into a staging data extension and needs to benormalized before adding into the master data extension. A text field named 'birthday' contains date values in various formats. Some of the values are valid dates, but some are not.
Which SQL keywords and functions could be used to write the query'' Choose2 answers
A. CASE, ISDATE, CONVERT
B. WHERE, ISDATE, CONVERT
C. CASE, ISDATE, CAST
D. UPDATE, ISDATE, CONVERT