Computer Awareness
🟢 Lite — Quick Review (1h–1d)
Rapid summary for last-minute revision before your exam.
Computer Fundamentals
A computer is an electronic device that accepts input, processes data, stores it, and produces output. The basic units:
- Input Unit: Keyboard, Mouse, Scanner, Microphone
- Output Unit: Monitor (VDU), Printer, Speaker
- Central Processing Unit (CPU): Brain of computer — has Arithmetic Logic Unit (ALU) + Control Unit (CU) + Registers
- Memory: RAM (volatile/temporary) + ROM (non-volatile/permanent)
Generations of Computers:
| Generation | Years | Technology |
|---|---|---|
| 1st | 1940-1956 | Vacuum tubes |
| 2nd | 1957-1963 | Transistors |
| 3rd | 1964-1971 | Integrated Circuits |
| 4th | 1972-present | Microprocessors |
| 5th | Present-future | Artificial Intelligence |
⚡ UPTET tip: CPU speed is measured in Hertz (Hz) — MHz (million) or GHz (billion). Higher Hz = faster processor.
Hardware Basics
Input Devices: Keyboard, Mouse, Scanner, Barcode reader, OMR, MICR, Light pen, Joystick
Output Devices: Monitor (CRT/LCD/LED), Printer (Dot matrix, Inkjet, Laser), Plotter, Speaker
Storage Devices:
- Primary: RAM, ROM, Cache
- Secondary: Hard Disk (HDD), SSD, USB Drive, CD/DVD/Blu-ray, Magnetic Tape
Memory hierarchy (fastest to slowest): Register → Cache → RAM → Hard Disk → Optical Disk → Magnetic Tape
⚡ UPTET tip: RAM is called “volatile” because data is lost when power is off. ROM is “non-volatile” — data persists without power.
Software Basics
System Software:
- Operating System: Windows, Linux, macOS, Android — manages hardware and software resources
- Language Translators: Compiler (translates entire program at once), Interpreter (line by line), Assembler (for assembly language)
Application Software: MS Word, Excel, PowerPoint, Browser, Media Player, Tally, Photoshop
Utility Programs: Antivirus, Disk defragmenter, File compression (WinRAR, 7-Zip)
🟡 Standard — Regular Study (2d–2mo)
Standard content for students with a few days to months.
Operating Systems
Functions of an OS:
- Process Management — scheduling and managing tasks
- Memory Management — allocating RAM to programs
- File Management — organizing files in folders/directories
- Device Management — controlling input/output devices via drivers
- Security — user authentication, firewalls
Types of OS:
- Single-user, Single-task: MS-DOS
- Single-user, Multi-task: Windows, macOS
- Multi-user: Linux, Unix, Server editions
- Real-time OS: Used in aircraft, medical equipment
Popular OS Examples:
- Windows (10, 11) — most common desktop OS
- Linux (Ubuntu, Fedora, Debian) — open source
- macOS — Apple computers
- Android / iOS — mobile operating systems
Microsoft Office — Key Applications
MS Word (Word Processor):
- Used for creating documents, letters, reports
- Features: Spell check, grammar check, word count, mail merge, track changes
- File extension: .docx
- Shortcuts: Ctrl+B (Bold), Ctrl+I (Italic), Ctrl+U (Underline), Ctrl+S (Save), Ctrl+P (Print), Ctrl+C (Copy), Ctrl+V (Paste), Ctrl+Z (Undo)
MS Excel (Spreadsheet):
- Organized in rows (numbers) and columns (letters)
- Basic functions: SUM, AVERAGE, COUNT, MAX, MIN, IF
- Formula bar shows the formula; cell shows the result
- File extension: .xlsx
- Charts: Bar, Line, Pie, Column graphs
MS PowerPoint (Presentation):
- Slides-based presentation software
- Design templates, animations, transitions
- File extension: .pptx
⚡ UPTET tip: Excel formulas always start with ”=” sign. SUM(A1:A10) adds cells A1 through A10.
Internet and Web
Internet vs World Wide Web:
- Internet = global network of computers connected together
- WWW = collection of web pages accessed via browsers (a service on the internet)
Web Browsers: Google Chrome, Mozilla Firefox, Microsoft Edge, Safari, Opera
Search Engines: Google, Bing, Yahoo, DuckDuckGo
- Use quotes for exact phrase: “UPTET exam date”
- Use minus for exclusion: JEE -coaching
- Use site: for specific website: site:ncert.nic.in
Important Internet Terms:
- HTTP/HTTPS: Protocol for web page transfer (S = Secure)
- URL: Uniform Resource Locator (e.g., www.studyroadmap.in)
- FTP: File Transfer Protocol
- Email protocols: POP3, IMAP (receiving), SMTP (sending)
- IP Address: Unique numerical address of a computer (e.g., 192.168.1.1)
- Domain Name: Text address mapping to IP (e.g., google.com)
Cloud Computing: Storing data on remote servers accessed via internet — examples: Google Drive, Dropbox, iCloud, Microsoft OneDrive
🔴 Extended — Deep Study (3mo+)
Comprehensive coverage for students on a longer study timeline.
Computer Architecture Basics
Parts of CPU:
- ALU (Arithmetic Logic Unit): Performs arithmetic (+, −, ×, ÷) and logical (AND, OR, NOT) operations
- Control Unit (CU): Controls flow of data between CPU and other devices; fetches and executes instructions
- Registers: Very fast memory locations inside CPU (Accumulator, Program Counter, Instruction Register, Memory Address Register)
Bus System (data transfer pathways):
- Data Bus: Carries actual data (bidirectional)
- Address Bus: Carries memory addresses (unidirectional)
- Control Bus: Carries control signals (bidirectional)
Memory Measurements:
| Unit | Size |
|---|---|
| 1 Byte | 8 bits |
| 1 KB | 1024 Bytes |
| 1 MB | 1024 KB |
| 1 GB | 1024 MB |
| 1 TB | 1024 GB |
| 1 PB | 1024 TB |
⚡ UPTET exam question: “Smallest unit of data in a computer?” → Bit (Binary digit — 0 or 1)
Number Systems & Data Representation
Computers work in binary (base 2) — only 0s and 1s.
Conversions:
- Decimal to Binary: Divide by 2, collect remainders (read bottom to top)
- Example: 13₁₀ → 1101₂
- Binary to Decimal: Multiply each bit by 2^position
- Example: 1101₂ → 1×2³ + 1×2² + 0×2¹ + 1×2⁰ = 8+4+0+1 = 13
ASCII Code: American Standard Code for Information Interchange
- Uses 7 bits (128 characters) — extended ASCII uses 8 bits (256 characters)
- ‘A’ = 65, ‘a’ = 97, ‘0’ = 48, Space = 32
Unicode: Universal coding system for all languages — UTF-8, UTF-16, UTF-32
Networking Basics
Types of Networks by Area:
- PAN (Personal Area Network): Few meters — Bluetooth, your phone+earbuds
- LAN (Local Area Network): Within a building — school computer lab, office
- MAN (Metropolitan Area Network): City-wide — connects multiple LANs
- WAN (Wide Area Network): Country/World — Internet, corporate VPN
Network Devices:
- Router: Connects networks and directs traffic (home router connects LAN to internet)
- Switch: Connects devices within same network (Layer 2)
- Hub: Basic device sharing data to all ports (old technology)
- Modem: Converts digital to analog signals for internet transmission
- Access Point: Creates wireless network (Wi-Fi)
IP Addressing:
- IPv4: 32-bit address — e.g., 192.168.0.1 (4 billion addresses)
- IPv6: 128-bit address — e.g., 2001:0db8:85a3:0000:0000:8a2e:0370:7334 (unlimited)
⚡ UPTET tip: DNS = Domain Name System — translates domain names (studyroadmap.in) to IP addresses (103.x.x.x)
Computer Security & Ethics
Common Threats:
- Virus: Self-replicating malicious code that spreads by attaching to files
- Worm: Spreads通过网络 without user interaction
- Trojan Horse: Disguised as legitimate software but creates backdoor
- Ransomware: Encrypts files and demands payment
- Phishing: Fake emails/websites stealing personal information
- Spyware: Secretly monitors user activity
Prevention Measures:
- Use antivirus software (updated regularly)
- Don’t click suspicious links or attachments
- Use strong passwords (8+ characters, mix of letters/numbers/symbols)
- Enable firewall
- Regular data backup (3-2-1 rule: 3 copies, 2 media types, 1 offsite)
IT Act 2000 (India):
- Deals with cyber crimes, electronic contracts, digital signatures
- Section 66: Punishment for hacking
- Section 67: Punishment for publishing obscenity in electronic form
Intellectual Property Rights: Software is protected by Copyright Act. Using pirated software is illegal.
⚡ UPTET exam shortcut: “ATM” stands for Automated Teller Machine — but in computing, T stands for “Teller”? Actually ATM is a banking term, not a computing acronym. But questions on computer awareness might confuse ATM with Asymmetric Transfer Mode — which is wrong. ATM in computing = Asynchronous Transfer Mode (a networking technology).
Content adapted based on your selected roadmap duration. Switch tiers using the selector above.