Practical exam blueprint for CompTIA A+ Core 2 (220-1202) readiness: operating systems, security, troubleshooting, and operational procedures.
How to Use This Exam Blueprint
Use this checklist as a practical study map for CompTIA A+ Core 2 (220-1202). It is designed to help you decide whether you can apply the topics, not just recognize terms.
Work through each section in three passes:
Identify weak areas: Mark anything you cannot explain or perform without notes.
Practice scenario decisions: For each tool, setting, or procedure, ask, “When would I use this instead of another option?”
Final review: Revisit traps, troubleshooting flows, and command-line tasks before exam day.
This page is independent exam-prep support and should be used alongside the current CompTIA exam objectives for 220-1202.
Topic-Area Readiness Map
Readiness area
What to be ready for
You are ready when you can…
Operating systems
Windows, macOS, Linux, mobile OS concepts, file systems, interfaces, settings, utilities
Choose the right OS tool or setting for a user, support, security, or troubleshooting task
Start, stop, disable, or set service startup behavior
Feature fails because required service is stopped
Event Viewer
System, application, security logs
Need evidence of errors, warnings, crashes, login events
Registry Editor
Low-level Windows configuration
Use carefully; backup/export before change
Local Users and Groups
Local account and group management
Add user to local admin or reset local permissions
Local Security Policy
Password policy, audit policy, user rights
Configure local security behavior
Windows Defender Firewall
Inbound/outbound rules, profiles
App blocked or exposed on wrong network profile
Windows Security
Antivirus, reputation protection, device security, firewall status
Check protection status after suspected malware
System Configuration
Boot and startup troubleshooting
Diagnose startup service or boot option issue
Computer Management
Aggregated admin console
Need one place for users, disks, services, logs
Remote Desktop settings
Remote access configuration
Support or access a machine remotely, if authorized
OS Installation, Upgrade, and Recovery Readiness
Installation and Upgrade Decisions
Decision point
Choose carefully because…
Check yourself
Clean install vs upgrade
Clean installs reduce legacy issues but can remove apps/data if not backed up
Can you explain what must be backed up first?
In-place repair vs reinstall
Repair may preserve data and apps; reinstall may be more disruptive
Can you choose the least destructive option that fixes the issue?
Local account vs organizational account
Affects authentication, policy, management, and recovery
Can you explain the support implications?
32-bit vs 64-bit concepts
Impacts application and hardware compatibility
Can you recognize compatibility constraints without memorizing unsupported details?
Driver source
Vendor driver may be needed for hardware-specific features
Can you avoid installing untrusted drivers?
Update timing
Updates can fix security issues but may require restart or testing
Can you apply change control before a production change?
Recovery and Repair Tools
Tool or feature
Use when…
Know the risk
System Restore
Recent configuration or driver change caused instability
Does not replace a full data backup
Startup Repair
Windows fails to boot properly
May not fix hardware or severe file-system problems
Safe Mode
Need minimal drivers/services to isolate a problem
Some devices and network features may be unavailable
Recovery environment
Need repair options outside normal boot
Choose options carefully to avoid data loss
Reset/reinstall options
System corruption or persistent software issues
Verify backup and user approval first
Backup restore
User data or system state must be recovered
Confirm restore point, version, and destination
Driver rollback
New driver caused instability
Works only when a prior driver is available
Uninstall update
Recent update correlates with failure
Consider security and organizational policy impact
Installation and Configuration Checklist
I can identify the information to collect before an OS install: user data, apps, license status, drivers, network settings, and special hardware needs.
I can explain why backups and restore verification matter before destructive changes.
I can distinguish upgrade, clean install, repair, reset, and restore scenarios.
I can configure basic user accounts, local groups, passwords, and sign-in options.
I can recognize when a driver issue is more likely than an application issue.
I can troubleshoot missing storage, incorrect drive letters, and partition/formatting problems.
I can explain why system time, region, language, and accessibility settings may matter in support cases.
I can choose a recovery option based on severity, data risk, and time available.
Command-Line and Utility Readiness
You do not need to memorize every switch for every command, but you should know what the command is for and when it is the best next step.
Windows Command Checklist
Command or utility
Main purpose
Scenario cue
ipconfig
View or refresh IP configuration
No network, wrong address, DHCP troubleshooting
ping
Test reachability and basic latency
Can the host reach gateway, DNS, or remote endpoint?
tracert
Show path to destination
Connectivity fails beyond local network
nslookup
Query DNS resolution
Website fails by name but works by IP
netstat
View connections and listening ports
Suspicious connections or service listening check
net use
Map or disconnect network shares
User cannot access shared drive
net user
Manage or view local users
Local account support task
sfc
Check and repair protected system files
Corrupted Windows components suspected
DISM
Service and repair Windows image
SFC cannot complete or image health issue suspected
chkdsk
Check file system and disk errors
Disk errors, file corruption, abnormal shutdown
shutdown
Restart or shut down locally/remotely when authorized
Controlled reboot required
gpupdate
Refresh Group Policy
Policy change not reflected yet
gpresult
Review applied policy
Determine whether policy applied to user/computer
tasklist
Show running processes
Need process name or PID
taskkill
End a process
Application stuck and GUI cannot close it
format
Format a volume
Prepare storage; destructive if wrong target
diskpart
Advanced disk partition tasks
Disk configuration requires command line
robocopy
Robust file copy
Migrations, backups, large directory copy
winver
Show Windows version/build information
Compatibility or support verification
Example command-recognition practice:
ipconfig /all -> Review detailed adapter configuration
ipconfig /release -> Release DHCP lease
ipconfig /renew -> Request new DHCP lease
ipconfig /flushdns -> Clear local DNS resolver cache
Linux and macOS Command Checklist
Command
Main purpose
Scenario cue
ls
List files/directories
Need to inspect directory contents
cd
Change directory
Navigate file system
pwd
Print working directory
Confirm current location
cp
Copy files
Duplicate file or directory
mv
Move or rename
Rename file or relocate it
rm
Remove files
Delete with caution
chmod
Change permissions
Script not executable or permissions too open
chown
Change owner/group
File ownership prevents access
sudo
Run command with elevated privileges
Administrative command required
ps
View processes
Identify running process
kill
Terminate process
Stop hung or unwanted process
top
Monitor processes/resources
CPU or memory usage investigation
df
Disk free space
Check mounted volume capacity
du
Directory/file space usage
Find space-consuming folders
grep
Search text
Find matching lines in logs/config
find
Locate files
Search by name or attributes
ifconfig / ip
Network interface info
Interface addressing check
ping
Connectivity test
Reachability check
traceroute
Path test
Routing/path troubleshooting
man
Command documentation
Need syntax or options
Permissions Readiness
Be ready to interpret permissions conceptually.
Permission concept
What to know
Read
View file contents or list directory contents, depending on context
Write
Modify file contents or create/delete items, depending on context
Execute
Run a file or traverse a directory, depending on OS/context
Ownership
Determines who controls access and permission changes
Inheritance
Child objects may receive permissions from parent folders
Share vs file permissions
Effective access may be constrained by both network share and file system permissions
Least privilege
Users should receive only the permissions needed for their role
Security Exam Blueprint
Core Security Concepts
Concept
You should be able to…
Confidentiality
Protect data from unauthorized disclosure
Integrity
Prevent or detect unauthorized data modification
Availability
Keep systems and data accessible to authorized users
Authentication
Verify identity using passwords, MFA, biometrics, certificates, or tokens
Authorization
Grant access based on role, group, permission, or policy
Accounting/auditing
Track actions through logs and records
Least privilege
Restrict access to only what is required
Defense in depth
Layer controls so one failure does not expose everything
Zero trust concepts
Verify explicitly and avoid implicit trust based only on network location
Physical security
Protect devices, ports, rooms, screens, and removable media
Threat and Attack Recognition
Threat or symptom
What it may indicate
Ready response
Phishing email
Credential theft or malware delivery
Inspect sender, links, attachments; report through process
Spear phishing
Targeted social engineering
Verify request through trusted channel
Vishing/smishing
Phone or SMS-based social engineering
Do not disclose credentials or codes
Shoulder surfing
Visual credential/data theft
Use privacy screens, awareness, secure workspace
Tailgating
Unauthorized physical entry
Follow visitor and badge procedures
Malware pop-ups
Adware, rogue security software, browser hijack
Isolate, scan, remove, repair browser settings
Unexpected encryption
Ransomware or destructive malware
Disconnect from network and escalate
Slow system with unknown processes
Malware, resource abuse, or broken software
Investigate processes, startup items, logs
Browser redirects
Extension, proxy, DNS, or malware issue
Check extensions, proxy settings, DNS, scan
Repeated account lockouts
Password attacks, saved bad credential, or user error
Wipe, sanitize, shred, or destroy based on media type and policy
Malware Response Workflow
Use a consistent sequence. Exam scenarios often test the safest next step, not just the final fix.
flowchart TD
A[Identify symptoms] --> B[Isolate affected system]
B --> C[Preserve data and evidence as required]
C --> D[Disable persistence points if appropriate]
D --> E[Update anti-malware tools]
E --> F[Scan and remove/quarantine]
F --> G[Remediate damaged settings]
G --> H[Update OS, apps, and signatures]
H --> I[Change affected credentials]
I --> J[Educate user and document]
Checklist:
I can identify when to disconnect a system from the network.
I can avoid deleting evidence when escalation or policy requires preservation.
I can distinguish quarantine, removal, rebuild, and restore.
I can check startup items, browser extensions, scheduled tasks, services, and unknown processes.
I can explain why passwords may need to be changed after cleanup.
I can document symptoms, actions taken, tools used, and user impact.
Software Troubleshooting Readiness
Troubleshooting Method Discipline
Know the general troubleshooting flow and apply it consistently.
Step
What good exam behavior looks like
Identify the problem
Gather symptoms, user statements, recent changes, error messages, scope
Establish a theory
Start with likely causes; question the obvious without assuming
Test the theory
Use safe, targeted tests; if wrong, form a new theory
Plan and implement fix
Consider user impact, backups, authorization, and change control
Verify functionality
Confirm the issue is fixed and no new issue was introduced
Document findings
Record root cause, resolution, affected assets, and next steps
Symptom-to-Cause Practice
Symptom
Likely areas to investigate
Best next-step thinking
Application crashes at launch
Corrupt app files, missing dependency, permission issue, update problem
Check Event Viewer/logs, repair/reinstall app, test as another user
System slow after startup
Startup apps, malware, low disk space, insufficient memory, failing disk
Use Task Manager/resource tools before reinstalling
Blue screen or kernel panic
Driver, hardware, OS corruption
Check recent driver/hardware changes and logs
Device works on one PC, not another
Driver, port, permissions, OS compatibility
Test known-good port/cable/device; review Device Manager
Making everyone admin “fixes” the symptom but creates risk
Use least privilege and proper permissions
Browser problems
Cache, extensions, proxy, DNS, and malware can look similar
Build a repeatable browser troubleshooting checklist
Professionalism
Technical answer ignores customer impact
Include communication, documentation, and authorization
Final-Week Review Plan
Seven to Four Days Out
Re-read the current CompTIA objectives for CompTIA A+ Core 2 (220-1202) and mark each item green, yellow, or red.
Build a one-page command table from memory, then check gaps.
Practice mixed troubleshooting scenarios, not only definition questions.
Review Windows administrative tools and what each one is best used for.
Review malware removal order and incident escalation cues.
Review permissions, local users/groups, and least privilege.
Review safety, documentation, and change-management steps.
Three to Two Days Out
Drill weak topics only; do not reread everything passively.
Explain five scenarios out loud: malware infection, failed update, app crash, permission denial, and browser redirect.
Practice choosing the “best next step” rather than the most advanced fix.
Review mobile security and backup/sync concepts.
Review macOS/Linux basic commands and support areas.
Review privacy and data-handling expectations.
Day Before
Stop deep new-topic study.
Review your personal trap list.
Review command purposes and administrative tools.
Review the troubleshooting process and malware workflow.
Prepare exam logistics, identification, timing, and testing environment requirements.
Get rest.
Practical Next Step
Pick your lowest-confidence readiness area from this checklist and do focused practice on that topic. For each missed question or lab task, write down:
the symptom,
the correct tool or concept,
why the tempting answer was wrong,
the safest next step,
and what you will recognize next time.
That habit turns the 220-1202 topic list into exam-ready judgment for CompTIA A+ Core 2 (220-1202).