Back
BCS-111 • Block 1 Unit 5✍️ Author: Er. Manoj Kumar

Unit 5: Introduction to Personal Computers & OS Utilities 🖥️

Learn what constitutes a Personal Computer (PC), key hardware components (Motherboard, CPU steps, Video Cards), and Windows utilities (CHKDSK disk repair & System Restore).

Mode: ENGLISH (EASY Level)
Ads by Google

1. What is a Personal Computer (PC)? 💻

A Personal Computer (PC) is a general-purpose machine designed for individual daily tasks including education, business administration, graphics, and online communications. PCs accept input data, process instructions, and generate output.

Key Variations:

• Desktop PCs: Stationed tower setups with separate monitor, keyboard, and mouse.

• Laptops: Integrated portable units with built-in battery power.

• Netbooks: Compact, low-cost laptops powered by power-efficient chips like Intel Atom.

• Tablets: Slate-shaped touchscreen devices utilizing virtual keyboards and handwriting recognition.

Developer Key Takeaways
  • Desktops offer superior upgradeability and ventilation space.
  • Laptops offer portability and battery power backup.
  • Netbooks are lightweight devices focused on web access and documentation.
  • Tablets rely on touchscreens and digital styluses for input.

2. Key Hardware Components & CPU Steps 🧠

Hardware refers to the physical, touchable components of a PC.

The CPU follows a 4-step execution cycle:

1
Fetch (retrieve instruction from memory)
2
Decode (translate instruction into control signals)
3
Execute (perform operation in ALU)
4
Output (write result back to storage/display)

Motherboard Connectors:

• ATX Power Connector: Connects PSU power to the mainboard.

• AGP / PCIe Slots: Connects high-performance video graphics cards.

• USB Headers: Pin headers connecting front-panel ports.

C++ Architecture Code Sample
// Standard ⊞ Windows PC Specifications Query (C++)
#include <iostream>
int main() {
    std::cout << "Standard PC Execution: Fetch -> Decode -> Execute -> Output" << std::endl;
    return 0;
}
Developer Key Takeaways
  • ALU (Arithmetic Logic Unit) executes all math (+, -) and logical decisions.
  • CU (Control Unit) coordinates traffic between peripherals and CPU.
  • ULV (Ultra Low Voltage) processors consume minimal power for mobile tablets.

3. OS Utilities: CHKDSK & System Restore 🛠️

Utility software focuses on system infrastructure health and system maintenance.

CHKDSK (Check Disk):

Scans storage drives for logical filesystem errors and bad sectors.

• CHKDSK C: /f -> Fixes filesystem errors on volume.

• CHKDSK C: /r -> Locates bad sectors and recovers readable data.

System Restore:

Rolls back core system files (.dll, .exe, registry keys) to an earlier restore point if malware or driver crashes occur. Note: System Restore DOES NOT alter personal files (images, emails, documents).

Developer Key Takeaways
  • Exit Code 0 on CHKDSK means no errors were found.
  • System Restore protects OS drivers and registry settings, not personal media.
  • Always maintain separate backups of personal documents.

Interactive Computer Architecture Tool: Base Converter

Type any integer below to see how the CPU represents it across Binary, Octal, and Hexadecimal registers.

Binary (Base 2)
101010
Octal (Base 8)
52
Hexadecimal (Base 16)
0x2A

Unit Mastery Quiz

Test your understanding in ENGLISH.

Q1. Which CHKDSK command switch scans for bad sectors and attempts to recover readable information?
Q2. Fill in the blank: System Restore rolls back system files like .dll and .exe, but does NOT affect personal ______ files.
Select Option Pill:
Official IGNOU & Developer Reference Links