Cte 231

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 12

Step 1: What is a Computer?

A computer is an electronic device that can store, retrieve, and process data according to a set of
instructions (programs). It's essentially a machine that can follow complex instructions to
perform various tasks, from simple calculations to running complex software applications.

Step 2: Major Components of a Computer

 System Unit (CPU Tower): The central housing that contains most of the computer's
essential components, including the motherboard, processor, memory (RAM), storage
drives (hard disk drive (HDD) or solid-state drive (SSD)), graphics card (if applicable),
and power supply.
 Monitor: The display screen that shows the visual output generated by the computer's
graphics card.
 Mouse: A pointing device that allows you to control the cursor on the screen and interact
with elements on the computer.
 Keyboard: A set of keys used for typing text and entering commands into the computer.
 Other Components: Additional components may include speakers, a webcam, printer,
external storage devices (USB drives, external hard drives), etc.

Step 3: Importance of ESD Protection

 Electrostatic Discharge (ESD): The sudden transfer of electrical charge between objects
at different potentials.
 ESD Precautions: When working with computer components, it's crucial to prevent ESD
damage. This can be done by:
o Wearing an ESD wrist strap grounded to a proper grounding point.
o Touching a grounded metal part of the computer case before handling
components.
o Using an ESD mat as your work surface.

ESD can damage sensitive electronic components in your computer. Taking these precautions
helps minimize the risk of such damage.

Step 4: Processor Manufacturers

Here are some major processor (CPU) manufacturers and their brands:

 AMD: Ryzen, Athlon


 Intel: Core (i3, i5, i7, i9), Pentium, Celeron

Step 5 to 9

The order you listed isn't quite right. Swapping the motherboard and CPU is a more involved
step, so let's fix the order to make it easier:
1. Open the computer system unit: Make sure the computer is off and unplugged from the
wall. Lay the computer on its side on a flat work surface. Most cases have a side panel
that can be removed with screws.
2. Remove all the components from the system unit: There are many components
connected to the motherboard with cables and screws. You'll need to carefully remove
these one at at time, taking note of where each cable was connected. Here's a general
order for removing components:
o Disconnect any peripheral devices (printers, scanners, external drives)
o Remove any PCI-e cards (graphics card, sound card, etc.) These are secured with
a screw and latch at the back of the case.
o Disconnect all the storage drives (hard drives, solid state drives) These are usually
connected with data and power cables.
o Disconnect the front panel connectors (power button, lights, USB ports) These are
usually small groups of wires with plugs that connect to the motherboard.
o Remove the RAM The RAM sticks are clipped into slots on the motherboard.
o Unscrew the CPU cooler How you do this depends on the cooler design, but there
are usually levers or screws that need to be loosened.
3. Change the motherboard and processor:
o Take out the old CPU. There's a lever or latch on the CPU socket that needs to be
released to remove the CPU.
o Carefully remove the motherboard. There will be screws holding it to the case,
and you'll need to disconnect any wires that are still attached.
o Install the new motherboard in the case, following the reverse steps you took to
remove it. Make sure to put the standoffs in the correct places so the motherboard
sits off the case. Screw the motherboard into the case.
o Install the new CPU into the socket on the motherboard. This should be fairly
easy, but be careful not to bend any pins. Close the latch or lever to secure the
CPU.
o Apply thermal paste to the CPU (unless your CPU cooler came pre-applied with
paste).
o Re-install the CPU cooler.
4. Install all the components back into the system unit: Reverse the steps you took in
step 2 to put everything back together. Make sure all the cables are securely plugged in
and all the screws are tightened.
5. Close the computer system unit and boot up the computer: Put the side panel back on
the case and screw it shut. Plug the computer back into the wall and turn it on.

Here are some additional tips:

 Take pictures as you go during disassembly. This will help you remember how to put
everything back together.
 It's a good idea to wear an anti-static wristband to prevent damaging any components
with static electricity.
 Don't force anything. If something seems stuck, check to make sure you haven't missed a
screw or latch.
 If you're not comfortable doing this yourself, you can take your computer to a local
computer repair shop and have them do it for you.
Experiment 2

Step 1: Redundant Array of Independent Disks (RAID)

RAID (Redundant Array of Independent Disks) is a storage technology that combines multiple
physical disk drives into a single logical unit. It offers two main benefits:

 Data redundancy: RAID stores data across multiple disks, so if one drive fails, the data
can still be recovered from the remaining drives. This enhances data security and fault
tolerance.
 Performance improvement: Depending on the RAID level (different configurations
with varying trade-offs), data can be striped (distributed) across multiple disks, enabling
parallel read/write operations, potentially increasing data transfer speeds.

There are several RAID levels, each with its own characteristics in terms of redundancy,
performance, and cost. Common RAID levels include:

 RAID 0 (Striping): Improves performance but offers no redundancy. Data loss occurs if
any drive fails.
 RAID 1 (Mirroring): Provides complete data redundancy by mirroring data on each
drive. Good for critical data but less efficient in storage space usage.
 RAID 5 (Distributed Parity): Offers a balance between performance and redundancy.
Data and parity information are distributed across the drives. Can tolerate a single drive
failure.

Step 2: Primary File Systems in Windows OS

Windows uses two primary file systems for data storage:

 NTFS (New Technology File System): The default file system for modern Windows
versions. Offers features like file permissions, journaling (tracking changes), and disk
quotas for enhanced security and manageability.
 FAT32 (File Allocation Table 32): An older file system still used with some external
storage devices due to its compatibility with various operating systems. However, it has
limitations on file size and overall storage capacity compared to NTFS.

Step 3: Hard Drive Partitioning and Its Importance

Partitioning is the process of dividing a physical hard drive into one or more logical sections.
Each partition acts like a separate drive to the operating system. Here's why partitioning is
important:

 Organization: You can organize your data into different partitions for better
management. For instance, you might have a partition for your operating system, another
for personal files, and one for backups.
 Flexibility: You can format or reinstall the operating system on one partition without
affecting data on other partitions.
 Dual Booting: Partitioning allows you to install multiple operating systems on the same
hard drive and boot into the desired one at startup.

Step 4: Logical Memory Layout and Divisions

Logical memory is a hierarchical memory management scheme that provides a contiguous view
of memory to applications. The operating system divides logical memory into logical address
spaces for each process (running program). This allows processes to use memory independently
and protects them from each other's memory access.

Dividing Memory into Logical Divisions:

Modern operating systems employ virtual memory to extend the available memory beyond
physical RAM. Here's a breakdown of the logical memory layout:

 Code: Instructions for the program.


 Data: Variables and other data used by the program.
 Stack: Stores function calls, arguments, and local variables.
 Heap: Dynamically allocated memory for data structures during program execution.
 Shared Memory: (Optional) Allows processes to share data efficiently.

The operating system manages the mapping between logical addresses used by processes in their
virtual memory space and physical memory locations in RAM. It uses a page table to translate
logical addresses to physical addresses for memory access. This enables efficient memory
utilization and memory protection.

These steps seem to be guiding you through setting up some older computer hardware
and using a keyboard and mouse. Let's break down each step:
Step 5: Floppy Disk Drives and Optical Drives
 Floppy disk drives are mostly obsolete due to their low storage capacity. You'll likely
only encounter them in older computers.
 Optical drives, like CD-ROM, DVD, and Blu-ray drives, are still used in some computers
to read discs.
How to install them: These drives typically use screws and a data cable to connect to
the motherboard inside the computer. If you're unsure, consult a manual for your
specific computer model.
Step 6: Hard Drives
 Hard drives are the primary storage device in a computer.
How to install them: Modern hard drives usually connect via SATA cables to the
motherboard. Again, consult your computer's manual for specific instructions.
Step 7: SCSI Devices (optional)
 SCSI (Small Computer Systems Interface) is an older interface used to connect various
devices like hard drives, scanners, and printers.
 SCSI is uncommon in modern computers due to simpler connection methods like USB.
Step 8: Wired and Wireless Keyboards
 Wired keyboards connect to the computer with a USB cable.
 Wireless keyboards connect via a USB receiver or Bluetooth.
Step 9: Safe Keyboard Practices
 This likely refers to proper hand positioning and typing techniques to avoid strain and
injury.
 There are many resources online to learn about proper typing posture.
Step 10: Connect Mouse
 Similar to keyboards, mice can be wired (USB) or wireless (USB receiver or Bluetooth).
Experiment 3

Computer Output Devices and Power Management


Here's a breakdown of the steps you mentioned:

Step 1: Common Output Devices

 Monitors: Display visual information processed by the computer. Different types include
LED, LCD, and OLED.
 Printers: Produce physical copies of documents, photos, and other digital content.
Common technologies are inkjet and laser.
 Sound Systems: Allow users to hear audio output from the computer, like music, videos,
and games. Examples include speakers, headphones, and soundbars.

Step 2: Display Power Management and Green Standards

 Display Power Management:


o Settings on your computer or monitor that automatically turn off the display after
a period of inactivity to conserve energy.
o Look for features like "sleep mode" or "auto-off."
 Green Standards:
o Certifications like Energy Star ensure that your monitor meets energy efficiency
benchmarks.
o Look for the Energy Star logo when purchasing a new monitor.

Step 3: Computer Power Supply Safety

 Always unplug your computer before opening the case and working on the power
supply.
 Leave power supply repairs to qualified technicians. Power supplies contain high
voltage capacitors that can store dangerous electrical charges even when unplugged.
 Do not overload the power supply. Ensure the total wattage of your computer
components doesn't exceed the power supply's capacity.

Step 4: Detecting Power Supply Problems

 Random shutdowns or restarts: This could indicate an unstable power supply.


 Unusual noises: Buzzing, clicking, or whirring sounds from the power supply can be
warning signs.
 Burning smell: A burning odor coming from your computer is a serious issue and could
indicate a failing power supply. Shut down your computer immediately and unplug it.
 Computer won't turn on: If your computer fails to power on at all, the power supply
could be the culprit.

Step 5: Power Protection for Your Computer


 Surge Protector: Protects your computer from sudden voltage spikes caused by
lightning or power grid issues.
 Uninterruptible Power Supply (UPS): Provides temporary battery power in case of a
power outage, allowing you to safely shut down your computer.
 Line Conditioner: Regulates incoming power voltage, ensuring a consistent supply to
your computer.

Note: When choosing a surge protector, UPS, or line conditioner, consider your specific needs
and budget.
Experiment 4

Step 1: Setting Up Serial and Parallel Ports (Mostly Obsolete)

 Note: Serial and parallel ports are largely obsolete on modern computers. USB has
become the standard for most peripheral connections. These steps are only applicable if
you're working with older equipment.

1. Identify the Ports: Locate the D-shaped serial (usually 9-pin) or D-shaped parallel
(usually 25-pin) port on your computer and the device you want to connect.
2. Check for Drivers: If using Windows, you might need to install drivers for the specific
device you're connecting. Consult the device's manual for driver installation instructions.

Step 2: Connecting and Disconnecting Cables

 Serial Cables:
o Align the pins of the cable connector with the port and secure the screws on the
connector.
o To disconnect, unscrew the connector screws and gently pull the cable out.
 USB Cables:
o Insert the USB cable's flat end into the corresponding USB port on your
computer.
o To disconnect, grasp the connector body (not the cable) and pull it straight out.
 FireWire Cables (IEEE 1394): (Less common nowadays)
o Similar to USB, but with a different shaped connector. Align the connector and
secure any latches.
o To disconnect, press any latch release buttons and pull the connector straight out.

Important: Always be gentle when connecting and disconnecting cables. Don't force them in
and ensure they're properly aligned to avoid damage to the ports.

Step 3: Common Types of Cables, NICs (Network Interface Cards), and Workstations

 Cables:
o Serial Cable (D-shaped connector) - for older devices
o Parallel Cable (D-shaped connector) - for older printers etc.
o USB Cable - widely used for various peripherals
o Ethernet Cable (RJ-45 connector) - for wired network connections
o FireWire Cable (IEEE 1394 connector) - less common alternative to USB (mostly
legacy)
 NIC (Network Interface Card): An expansion card that allows a computer to connect to
a network. Most modern computers have a built-in NIC.
 Workstations: Desktop computers used in a network environment.

Step 4: NIC Installation and Configuration


1. Install the NIC: If using a separate NIC card, follow the manufacturer's instructions to
install it in an available PCI or PCIe slot on your computer.
2. Driver Installation: The operating system might automatically detect and install drivers
for the NIC. If not, consult the NIC's manual for driver installation instructions.
3. Network Configuration: Access your operating system's network settings and configure
the NIC for your network type (DHCP or static IP).

Step 5: Connecting a Workstation to a Computer Network

1. Wired Network: Use an Ethernet cable to connect the NIC port on your workstation to a
network switch or router port.
2. Wireless Network (if applicable): Use your computer's Wi-Fi settings to connect to
your wireless network. You'll need the network name (SSID) and password.

Remember: These steps are a general guideline. Always refer to the specific device or network
documentation for detailed instructions.
Experiment 5

Step 1: Internet Connectivity using Modem and Network Connections

Imagine your internet connection as a highway system. Your devices (computers, phones,
tablets) are like cars, and the modem acts as an interpreter at a border crossing.

 Network Connections: These are the "roads" that carry data. They can be physical
cables (Ethernet) or wireless signals (Wi-Fi).
 Modem: This device translates the digital language your devices speak (1s and 0s) into a
signal that can travel over the network connection (like traffic lights and signs). It also
translates incoming signals back into digital data for your devices to understand.
 Internet Service Provider (ISP): This is the company that owns and operates the
"highways" and charges you a fee to use them.

Step 2: Types of Modems

The type of modem you need depends on your internet service:

 Cable Modem: Used for cable internet connections. Connects to a cable TV wall jack.
 DSL Modem: Used for Digital Subscriber Line (DSL) internet connections. Connects to
a phone jack.
 Fiber Optic Modem: Used for fiber optic internet connections. Connects to a fiber optic
cable wall jack.
 Satellite Modem: Used for satellite internet connections. Connects to a satellite dish.

Step 3: Connecting a Modem to a Computer (Not recommended for modern setups)

Traditionally, modems were directly connected to computers. However, this setup is less
common today. Most homes use a router to manage the network and connect multiple devices. If
you do need to connect directly, consult your modem's manual for specific instructions, but it
typically involves:

1. An Ethernet cable plugged into the modem's Ethernet port and your computer's Ethernet
port.
2. Configuring your computer's network settings (usually done automatically).

Step 4: Installing and Configuring a Web Browser

Most computers come with a web browser pre-installed (e.g., Google Chrome, Firefox, Opera).
If not, you can download them for free from the developer's website. Here's a general guideline:

1. Visit the browser's website (e.g., Google Chrome)


2. Download the installation file.
3. Run the downloaded file and follow the on-screen instructions.
4. Once installed, the browser icon should appear on your desktop or taskbar.
Step 5: Finding a Tutorial to Fix a Computer Problem

If you encounter a computer problem, you can search online for a solution. Here are some tips:

1. Clearly define the issue you're facing (e.g., "Slow internet connection," "Blue screen
error").
2. Use a search engine like Google and type your problem description.
3. Look for tutorials or troubleshooting guides from reputable websites (e.g., manufacturer
support pages, tech news websites).
4. You can also search for video tutorials on YouTube (YouTube).

Note: Be cautious when following online tutorials. Only download software or make system
changes from trusted sources.

You might also like