CompTIA A+ Core 2 220-1202 - Domain 1 Operating Systems

By Jordan Blake · Updated May 25, 2026

Questions25
Passing Score75%
Format100% Multiple Choice
Sessions Logged1,095
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.4 out of 5 from 35 ratings.
4.4 (35)

Topics covered

This quiz

Uncategorized25 (100%)

Uncategorized25 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-5633

Question Q-5633 A Windows 11 computer is stuck at a black screen…

1 comment · last active Jun 6, 2026

  • thoughtswillwonder · Jun 6, 2:22 PM

    Black screen after login but Safe Mode OK = bad startup app/driver or profile corruption — not usually HDD death.

Q-5630

Question Q-5630 A user wants to encrypt their entire Windows 10 Pro…

1 comment · last active May 13, 2026

  • Roy9Biv · May 13, 2:49 PM

    BitLocker = full-disk encryption on Win Pro/Enterprise. Home edition doesn't have it.

    +1 votes
Q-5620

Question Q-5620 A technician is deploying Windows to 50 identical workstations. They…

1 comment · last active May 12, 2026

  • Shoulditeachphysed · May 12, 7:12 AM

    Imaging 50 identical PCs = MDT/WDS/clone workflow — they want deployment tooling, not manual USB one-by-one.

    +1 votes
Q-5626

Question Q-5626 A Windows workstation shows a BSOD (Blue Screen of Death)…

1 comment · last active May 4, 2026

  • r0nnybums · May 4, 5:45 AM

    IRQL_NOT_LESS_OR_EQUAL = driver or RAM issue often. Check recent driver updates first.

Q-5637

Question Q-5637 A technician needs to find the MAC address and IP…

1 comment · last active May 2, 2026

  • ermacforcekin · May 2, 5:39 AM

    ipconfig /all for MAC + IP + DHCP info. ipconfig /release /renew when DHCP looks wrong.

Q-5625

Question Q-5625 A technician needs to verify the integrity of Windows system…

1 comment · last active May 1, 2026

  • iwilleatyou54 · May 1, 5:41 AM

    sfc /scannow repairs Windows system files. chkdsk is filesystem/volume. Different layers.

Q-5619

Question Q-5619 A technician needs to install Windows 11 Pro on a…

1 comment · last active Apr 28, 2026

  • CraigAtWork_ · Apr 28, 5:31 AM

    Win11 needs GPT on UEFI systems. MBR is legacy BIOS territory for fresh installs.

Q-5641

Question Q-5641 A technician upgrades a Windows 10 workstation to Windows 11…

1 comment · last active Apr 28, 2026

  • mark_marq · Apr 28, 12:02 AM

    TPM status: tpm.msc or Device Manager → Security devices. Win11 block message literally tells you to check TPM 2.0.

    +1 votes
Q-5632

Question Q-5632 A technician runs `chkdsk c: /r` on a Windows drive.…

1 comment · last active Apr 23, 2026

  • kauppily · Apr 23, 11:21 PM

    chkdsk /r schedules offline scan for bad sectors. /f fixes logical file errors.

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

A technician needs to install Windows 11 Pro on a new PC. The BIOS shows the drive is initialized as MBR. Windows 11 requires which partition style?

Answer choices

  • A. MBR (Master Boot Record)

  • B. GPT (GUID Partition Table) (Correct)

  • C. Either MBR or GPT — Windows 11 supports both

  • D. FAT32 partition table

Explanation

Windows 11 requires GPT (GUID Partition Table) for the system drive. It also requires UEFI firmware (not legacy BIOS/CSM) and TPM 2.0. MBR/legacy BIOS is used with Windows 10 and earlier. The drive must be converted to GPT before installing Windows 11.

Question 2

A technician needs to verify the integrity of Windows system files after a malware incident. Which command repairs corrupted or missing Windows system files?

Answer choices

  • A. `chkdsk /r`

  • B. `sfc /scannow` (Correct)

  • C. `defrag c:`

  • D. `ipconfig /flushdns`

Explanation

`sfc /scannow` (System File Checker) scans all protected Windows system files and replaces corrupted or missing ones with the cached versions from the Windows Component Store. `chkdsk` checks and repairs the file system/disk; `defrag` defragments HDDs.

Question 3

A Linux administrator needs to view the last 50 lines of a log file in real-time as it updates. Which command is MOST appropriate?

Answer choices

  • A. `cat /var/log/syslog | head -50`

  • B. `tail -f -n 50 /var/log/syslog` (Correct)

  • C. `grep -n 50 /var/log/syslog`

  • D. `view /var/log/syslog`

Explanation

`tail -f` follows a file in real-time, displaying new lines as they are appended. `-n 50` shows the last 50 lines. This combination is the standard command for monitoring log files in real-time on Linux/Unix systems.

Question 4

A Windows 10 workstation is experiencing performance issues. A technician wants to prevent unnecessary applications from loading at startup. Which tool is MOST appropriate?

Answer choices

  • A. Device Manager

  • B. Task Manager → Startup tab (Correct)

  • C. Disk Management

  • D. Control Panel → Programs and Features

Explanation

Task Manager's Startup tab (or `msconfig`'s Startup tab in older Windows) lists all startup applications with their impact rating and allows enabling/disabling them. This is the most accessible and appropriate tool for managing startup programs.

Question 5

A user deleted an important file in Windows. The Recycle Bin has been emptied. The computer has Windows 10 with File History enabled and backups to an external drive. How can the file be recovered?

Answer choices

  • A. Use System Restore

  • B. Use File History to restore the previous version of the file (Correct)

  • C. The file is permanently deleted and cannot be recovered

  • D. Run `sfc /scannow`

Explanation

File History (enabled in Windows 10/11) continuously backs up files from the user's libraries, desktop, and contacts to an external drive or network location. Files deleted after being backed up can be restored through the "Restore personal files" option in File History.