0
0
Cybersecurityknowledge~30 mins

Automated vs manual assessment in Cybersecurity - Hands-On Comparison

Choose your learning style9 modes available
Automated vs Manual Assessment
📖 Scenario: You are part of a cybersecurity team tasked with evaluating the security of a company's network. You need to understand the differences between automated and manual assessment methods to decide which approach to use for different parts of the evaluation.
🎯 Goal: Build a simple comparison chart that lists key features of automated and manual assessments to help your team understand their strengths and weaknesses.
📋 What You'll Learn
Create a dictionary called assessment_methods with two keys: 'Automated' and 'Manual'.
Add a list of three key features for each assessment method as values in the dictionary.
Create a variable called comparison_title with the value 'Automated vs Manual Assessment'.
Write a loop that iterates over assessment_methods and prints each method with its features.
💡 Why This Matters
🌍 Real World
Cybersecurity professionals often need to decide when to use automated tools or manual analysis to find security issues effectively.
💼 Career
Understanding these assessment methods helps security analysts, auditors, and penetration testers plan their work and communicate findings clearly.
Progress0 / 4 steps
1
Create the assessment methods dictionary
Create a dictionary called assessment_methods with two keys: 'Automated' and 'Manual'. Assign an empty list as the value for each key.
Cybersecurity
Need a hint?

Use curly braces {} to create a dictionary and square brackets [] for empty lists.

2
Add key features to each assessment method
Add these three features to the 'Automated' list in assessment_methods: 'Fast and scalable', 'Uses tools and scripts', 'May miss complex issues'. Add these three features to the 'Manual' list: 'Detailed analysis', 'Requires expert knowledge', 'Time-consuming'.
Cybersecurity
Need a hint?

Use list syntax with square brackets and separate items with commas inside the dictionary values.

3
Create the comparison title variable
Create a variable called comparison_title and set it to the string 'Automated vs Manual Assessment'.
Cybersecurity
Need a hint?

Assign the exact string to the variable using single or double quotes.

4
Loop through the dictionary to display features
Write a for loop using variables method and features to iterate over assessment_methods.items(). Inside the loop, write a comment line showing how you would print the method name and its features (do not use actual print statements).
Cybersecurity
Need a hint?

Use a for loop with two variables to unpack the dictionary items.