Complete the sentence to identify the Windows feature that controls user permissions.
The Windows feature that manages user permissions is called [1].User Account Control (UAC) helps prevent unauthorized changes by asking for permission or an administrator password before allowing actions that could affect the system.
Complete the sentence to name the Windows tool used to configure security policies.
To set security policies on a Windows machine, you use the [1] console.The Local Security Policy console allows administrators to configure security settings like password policies and user rights.
Fix the error in the sentence describing Windows Firewall status.
The Windows Firewall can be turned on or off using the [1] settings.
The correct place to manage the firewall is the Windows Defender Firewall settings, not the Network and Sharing Center.
Fill both blanks to complete the sentence about password policies.
Windows password policies can be set to require a minimum length of [1] characters and must [2] complexity requirements.
Windows security best practices recommend a minimum password length of 8 characters and that passwords meet complexity requirements to improve security.
Fill all three blanks to complete the dictionary comprehension that filters enabled Windows services.
enabled_services = [1]: [2] for [3] in services.items() if [2]['status'] == 'running'
This comprehension creates a dictionary of service names and their details for services that are currently running. The keys are service names (name), and the values are the service objects (service).