0
0
Cybersecurityknowledge~10 mins

Windows security configuration in Cybersecurity - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the sentence to identify the Windows feature that controls user permissions.

Cybersecurity
The Windows feature that manages user permissions is called [1].
Drag options to blanks, or click blank then click option'
AUser Account Control
BFirewall
CTask Manager
DDisk Cleanup
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing UAC with Firewall which controls network access.
Thinking Task Manager manages permissions.
2fill in blank
medium

Complete the sentence to name the Windows tool used to configure security policies.

Cybersecurity
To set security policies on a Windows machine, you use the [1] console.
Drag options to blanks, or click blank then click option'
AControl Panel
BEvent Viewer
CLocal Security Policy
DDevice Manager
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Control Panel which is more general.
Selecting Event Viewer which only shows logs.
3fill in blank
hard

Fix the error in the sentence describing Windows Firewall status.

Cybersecurity
The Windows Firewall can be turned on or off using the [1] settings.
Drag options to blanks, or click blank then click option'
ASystem Configuration
BWindows Defender Firewall
CNetwork and Sharing Center
DTask Scheduler
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing firewall settings with network sharing options.
Selecting unrelated tools like Task Scheduler.
4fill in blank
hard

Fill both blanks to complete the sentence about password policies.

Cybersecurity
Windows password policies can be set to require a minimum length of [1] characters and must [2] complexity requirements.
Drag options to blanks, or click blank then click option'
A8
B10
Cmeet
Dignore
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing to ignore complexity which weakens security.
Setting minimum length too low.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension that filters enabled Windows services.

Cybersecurity
enabled_services = [1]: [2] for [3] in services.items() if [2]['status'] == 'running'
Drag options to blanks, or click blank then click option'
Aname
Bservice
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up keys and values in the comprehension.
Using incorrect variable names causing errors.