Complete the code to select the audience based on age group.
target_audience = audience.filter(age [1] 25 to 34)
The correct keyword to select an age range is between, which specifies the audience aged 25 to 34.
Complete the code to target users interested in sports.
target_audience = audience.filter(interest == '[1]')
The interest to target is sports to reach users who like sports-related content.
Fix the error in the code to create a lookalike audience.
lookalike_audience = create_lookalike(source_audience, [1]=1)
The correct parameter to define the size of the lookalike audience is size.
Fill both blanks to filter audience by gender and location.
filtered_audience = audience.filter(gender == '[1]' and location == '[2]')
The code filters for female users located in the USA.
Fill all three blanks to create a dictionary for audience segments with age, interest, and lookalike score.
audience_segments = { [1]: '[2]', 'interest': '[3]'}The dictionary key for age is 'age', the age range is 30-40, and the interest is fitness.
