Complete the code to specify the campaign type as a search campaign.
campaign.type = "[1]"
Setting the campaign type to "search" ensures the ads appear in search engine results.
Complete the code to set the campaign budget to a daily amount.
campaign.budget = [1]The budget should be a number representing the daily amount in your currency.
Fix the error in the code to add keywords to the search campaign.
campaign.keywords = ["[1]", "shoes", "running"]
Keywords should be meaningful phrases. "running shoes" is a common search phrase.
Fill both blanks to create a dictionary of keywords with their match types.
keywords = {"[1]": "[2]", "sale": "broad"}"running shoes" is the keyword and "phrase" is a common match type to target searches containing that phrase.
Fill all three blanks to set campaign settings including location, language, and bidding strategy.
campaign.settings = {"location": "[1]", "language": "[2]", "bidding": "[3]"}Setting location to 'United States', language to 'English', and bidding strategy to 'maximize clicks' are common choices for search campaigns targeting English speakers in the US.