0
0
Cybersecurityknowledge~30 mins

Why cloud environments need different security in Cybersecurity - See It in Action

Choose your learning style9 modes available
Why Cloud Environments Need Different Security
📖 Scenario: You work in a company that is moving its data and applications from local computers to cloud services. Your team needs to understand why security in the cloud is different from security on regular computers.
🎯 Goal: Build a simple explanation using key points about why cloud environments require different security measures compared to traditional local systems.
📋 What You'll Learn
Create a list called cloud_security_factors with key reasons why cloud security is unique
Add a variable called shared_responsibility explaining the shared security model
Write a loop that prints each reason from cloud_security_factors with a simple explanation
Add a final summary statement in a variable called summary that explains the importance of adapting security for the cloud
💡 Why This Matters
🌍 Real World
Companies moving to cloud services must understand why their security approach needs to change to protect data and applications effectively.
💼 Career
Cybersecurity professionals need to know cloud security principles to design and manage safe cloud systems.
Progress0 / 4 steps
1
Create the list of cloud security factors
Create a list called cloud_security_factors with these exact strings: 'Data is stored on shared servers', 'Access is over the internet', 'Resources are virtual and dynamic', 'Multiple users share the same infrastructure'
Cybersecurity
Need a hint?

Use square brackets [] to create a list and include all four exact strings separated by commas.

2
Add the shared responsibility explanation
Create a variable called shared_responsibility and set it to the string 'Cloud providers and users both must secure their parts'
Cybersecurity
Need a hint?

Assign the exact string to the variable shared_responsibility.

3
Explain each cloud security factor
Write a for loop using variables factor to go through cloud_security_factors and create a new list called explanations where each item is the factor string plus ' requires special security measures.'
Cybersecurity
Need a hint?

Start with an empty list explanations. Use a for loop to add the combined strings.

4
Add the final summary statement
Create a variable called summary and set it to the string 'Cloud security needs special attention because of shared resources and internet access.'
Cybersecurity
Need a hint?

Assign the exact summary string to the variable summary.