Complete the sentence to define retargeting.
Retargeting is a digital marketing strategy that targets users who have previously [1] a website or app.
Retargeting focuses on users who have visited a website or app before, aiming to bring them back.
Complete the sentence to explain remarketing.
Remarketing typically uses [1] to show ads to users who interacted with a brand before.
Remarketing often involves using email lists to reconnect with previous customers or visitors.
Fix the error in the statement about retargeting.
Retargeting only targets users who have [1] a purchase.Retargeting targets users who have visited a site, not only those who completed a purchase.
Fill both blanks to complete the retargeting code example.
ads = [1] for user in users if user [2] 'visited_site' == True
The code shows ads to users who have visited the site by checking user.has 'visited_site' == True and then showing ads.
Fill all three blanks to complete the remarketing email logic.
if user.email [1] True and user [2] 'subscribed' [3] True: send_remarketing_email(user)
The code checks if the user has an email (is not None), has subscribed status, and that status is == True before sending an email.