0
0
Digital Marketingknowledge~30 mins

What is digital marketing - Hands-On Activity

Choose your learning style9 modes available
Understanding What is Digital Marketing
📖 Scenario: You are learning about how businesses promote their products and services online. Digital marketing is a key way companies reach customers using the internet and electronic devices.
🎯 Goal: Build a simple explanation of digital marketing by creating a list of its main components, then adding a short description for each part, and finally summarizing why digital marketing is important today.
📋 What You'll Learn
Create a list called digital_marketing_parts with these exact items: 'SEO', 'Content Marketing', 'Social Media', 'Email Marketing', 'Online Ads'
Create a dictionary called descriptions that gives a short explanation for each part in digital_marketing_parts
Use a for loop with variables part and desc to iterate over descriptions.items()
Create a final string variable called summary that explains why digital marketing is important in simple words
💡 Why This Matters
🌍 Real World
Digital marketing is used by businesses worldwide to promote products and services online, reaching customers through websites, social media, emails, and ads.
💼 Career
Understanding digital marketing basics is important for roles in marketing, sales, business development, and entrepreneurship.
Progress0 / 4 steps
1
Create the list of digital marketing parts
Create a list called digital_marketing_parts with these exact items in this order: 'SEO', 'Content Marketing', 'Social Media', 'Email Marketing', 'Online Ads'
Digital Marketing
Need a hint?

Use square brackets [] to create a list and separate items with commas.

2
Add descriptions for each digital marketing part
Create a dictionary called descriptions with these exact key-value pairs: 'SEO': 'Improving website visibility on search engines', 'Content Marketing': 'Creating useful articles and videos', 'Social Media': 'Using platforms like Facebook and Instagram', 'Email Marketing': 'Sending promotional emails to customers', 'Online Ads': 'Paid ads on websites and apps'
Digital Marketing
Need a hint?

Use curly braces {} to create a dictionary with keys and values separated by colons.

3
Loop through descriptions to connect parts and explanations
Use a for loop with variables part and desc to iterate over descriptions.items(). Inside the loop, create a new dictionary called part_summary that stores each part as key and its desc as value.
Digital Marketing
Need a hint?

Start with an empty dictionary and add each part and description inside the loop.

4
Write a summary explaining why digital marketing is important
Create a string variable called summary with this exact text: 'Digital marketing helps businesses reach many people online quickly and affordably.'
Digital Marketing
Need a hint?

Use quotes to create a string variable with the exact sentence.