0
0
Cybersecurityknowledge~30 mins

Why security evolves with technology in Cybersecurity - See It in Action

Choose your learning style9 modes available
Why Security Evolves with Technology
📖 Scenario: You work in a company that uses computers and the internet every day. You want to understand why security needs to change as technology changes.
🎯 Goal: Build a simple explanation that shows how security changes when new technology appears.
📋 What You'll Learn
Create a list called technologies with these exact items: 'Email', 'Smartphones', 'Cloud Computing', 'Internet of Things'
Create a variable called security_changes and set it to 0
Use a for loop with variable tech to go through technologies and add 1 to security_changes for each technology
Add a final statement that sets a variable message to the string 'Security must evolve as technology grows.'
💡 Why This Matters
🌍 Real World
Understanding why security evolves helps people protect their devices and data better as new technologies appear.
💼 Career
Cybersecurity professionals must keep learning about new technologies to create better security solutions.
Progress0 / 4 steps
1
Create the list of technologies
Create a list called technologies with these exact items: 'Email', 'Smartphones', 'Cloud Computing', and 'Internet of Things'.
Cybersecurity
Need a hint?

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

2
Set up a counter for security changes
Create a variable called security_changes and set it to 0.
Cybersecurity
Need a hint?

Use = to assign the value 0 to the variable security_changes.

3
Count security changes for each technology
Use a for loop with variable tech to go through the list technologies. Inside the loop, add 1 to security_changes for each technology.
Cybersecurity
Need a hint?

Use for tech in technologies: to loop and security_changes += 1 to add one each time.

4
Add the final message
Add a final statement that creates a variable called message and sets it to the string 'Security must evolve as technology grows.'
Cybersecurity
Need a hint?

Use = to assign the exact string to message.