SlideShare a Scribd company logo
LECTURE 02
HARDWARE:
COMPUTER SYSTEM &
COMPONENTS
Mr. Mubashir Ali
Lecturer(Dept. of Computer Science)
dr.mubashirali1@gmail.com
Living in a Digital World
Discovering
Computers 2010
Objectives Overview
Differentiate among various
styles of system units on
desktop computers,
notebook computers, and
mobile devices
Identify chips, adapter
cards, and other
components of a
motherboard
Describe the control unit
and arithmetic logic unit
components of a processor,
and explain the four steps in
a machine cycle
Identify characteristics of
various personal computer
processors on the market
today, and describe the
ways processors are cooled
Define a bit and describe
how a series of bits
represents data
Explain how program
instructions transfer in and
out of memory
Discovering Computers 2010: Living in a Digital World
Chapter 4
3See Page 209
for Detailed Objectives
Objectives Overview
Differentiate among the various
types of memory
Describe the purpose and types
of expansion slots and adapter
cards, and differentiate among
slots for various removable flash
memory devices
Differentiate between a port and
a connector, and explain the
differences among a USB port,
FireWire port, Bluetooth port,
SCSI port, eSATA port, IrDA port,
serial port, and MIDI port
Describe the types of buses in a
computer
Explain the purpose of a power
supply and describe how it keeps
cool
Understand how to clean a
system unit on a computer or
mobile device
Discovering Computers 2010: Living in a Digital World
Chapter 4
4See Page 209
for Detailed Objectives
The System Unit
• The system unit is a case that contains electronic
components of the computer used to process data
Discovering Computers 2010: Living in a Digital World
Chapter 4
5Page 210
Figure 4-1
The System Unit
• The inside of the system unit on a desktop
personal computer includes:
Discovering Computers 2010: Living in a Digital World
Chapter 4
6Page 211
Figure 4-2
Drive bay(s)
Power supply
Sound card
Video card
Processor
Memory
The System Unit
• The motherboard is the main circuit board of the
system unit
– A computer chip contains integrated circuits
Discovering Computers 2010: Living in a Digital World
Chapter 4
7Page 212
Figure 4-3
Processor
• The processor, also called the central processing
unit (CPU), interprets and carries out the basic
instructions that operate a computer
– Contain a control unit and an arithmetic logic unit
(ALU)
Discovering Computers 2010: Living in a Digital World
Chapter 4
8Page 213
Multi-core
processor
Dual-core
processor
Quad-core
processor
Processor
Discovering Computers 2010: Living in a Digital World
Chapter 4
9Page 213
Figure 4-4
Processor
• The control unit is the component of the
processor that directs and coordinates most of
the operations in the computer
• The arithmetic logic unit (ALU) performs
arithmetic, comparison, and other operations
Discovering Computers 2010: Living in a Digital World
Chapter 4
10Page 214
Click to view Web Link,
click Chapter 4, Click Web
Link from left navigation,
then click Control Unit
below Chapter 4
Processor
• For every instruction, a processor repeats a set of
four basic operations, which comprise a machine
cycle
Discovering Computers 2010: Living in a Digital World
Chapter 4
11Page 215
Figure 4-5
Processor
• Most current personal
computers support
pipelining
– Processor begins
fetching a second
instruction before it
completes the machine
cycle for the first
instruction
Discovering Computers 2010: Living in a Digital World
Chapter 4
12Pages 215 – 216
Figure 4-6
Processor
The processor contains registers, that
temporarily hold data and instructions
The system clock controls the timing
of all computer operations
• The pace of the system clock is called the clock
speed, and is measured in gigahertz (GHz)
Discovering Computers 2010: Living in a Digital World
Chapter 4
13Page 216
Processor
• Parallel processing uses multiple processors
simultaneously to execute a single program or task
– Massively parallel processing involves hundreds or thousands of
processors
Discovering Computers 2010: Living in a Digital World
Chapter 4
14Page 220
Figure 4-11
Data Representation
Analog signals are continuous and vary in
strength and quality
Digital signals are in one of two states: on
or off
• Most computers are digital
• The binary system uses two unique digits (0 and 1)
• Bits and bytes
Discovering Computers 2010: Living in a Digital World
Chapter 4
15Page 221
Data Representation
A computer circuit represents
the 0 or the 1 electronically by
the presence or absence of an
electrical charge
Eight bits grouped together as a
unit are called a byte. A byte
represents a single character in
the computer
Discovering Computers 2010: Living in a Digital World
Chapter 4
16Page 221
Figures 4-12 – 4-13
Data Representation
• ASCII (American
Standard Code for
Information
Interchange) is the most
widely used coding
scheme to represent
data
Discovering Computers 2010: Living in a Digital World
Chapter 4
17Page 221
Figure 4-14
Data Representation
Discovering Computers 2010: Living in a Digital World
Chapter 4
18Page 222
Figure 4-15
Memory
• Memory consists of electronic components that
store instructions waiting to be executed by the
processor, data needed by those instructions, and
the results of processing the data
• Stores three basic categories of items:
Discovering Computers 2010: Living in a Digital World
Chapter 4
19Page 223
The operating
system and other
system software
Application
programs
Data being
processed and the
resulting
information
Memory
• Each location in memory has an address
• Memory size is measured in kilobytes (KB or K),
megabytes (MB), gigabytes (GB), or terabytes
(TB)
Discovering Computers 2010: Living in a Digital World
Chapter 4
20Page 223
Figure 4-17
Memory
• The system unit contains two types of memory:
Discovering Computers 2010: Living in a Digital World
Chapter 4
21Pages 223 - 224
Volatile memory
Loses its contents when
power is turned off
Example includes RAM
Nonvolatile memory
Does not lose contents
when power is removed
Examples include ROM,
flash memory, and
CMOS
Memory
• Three basic types of RAM chips exist:
Discovering Computers 2010: Living in a Digital World
Chapter 4
22Page 225
Figure 4-19
Dynamic RAM
(DRAM)
Static RAM (SRAM)
Magnetoresistive
RAM (MRAM)
Memory
• RAM chips usually reside on a memory module
and are inserted into memory slots
Discovering Computers 2010: Living in a Digital World
Chapter 4
23Page 225
Figure 4-20
Memory
• Memory cache speeds the processes of the computer
because it stores frequently used instructions and data
Discovering Computers 2010: Living in a Digital World
Chapter 4
24Page 227
Figure 4-22
Click to view Web Link,
click Chapter 4, Click Web
Link from left navigation,
then click Windows
ReadyBoost below Chapter 4
Memory
Read-only memory (ROM) refers to memory chips
storing permanent data and instructions
• Firmware
A PROM (programmable read-only memory) chip is a
blank ROM chip that can be written to permanently
• EEPROM can be erased
Discovering Computers 2010: Living in a Digital World
Chapter 4
25Page 228
Click to view Web Link,
click Chapter 4, Click Web
Link from left navigation,
then click ROM
below Chapter 4
Memory
• Flash memory can be erased electronically and
rewritten
– CMOS technology provides high speeds and consumes
little power
Discovering Computers 2010: Living in a Digital World
Chapter 4
26Pages 228 – 229
Figure 4-23
Memory
• Access time is the amount of time it takes the
processor to read from memory
– Measured in nanoseconds
Discovering Computers 2010: Living in a Digital World
Chapter 4
27Page 229
Figures 4-24 – 4-25
Expansion Slots and Adapter Cards
• An expansion slot is a
socket on the motherboard
that can hold an adapter
card
• An adapter card enhances
functions of a component of
the system unit and/or
provides connections to
peripherals
– Sound card and video card
Discovering Computers 2010: Living in a Digital World
Chapter 4
28Page 230
Figure 4-26
Click to view Web Link,
click Chapter 4, Click Web
Link from left navigation,
then click Video Cards
below Chapter 4
Expansion Slots and Adapter Cards
• With Plug and Play, the computer automatically
can configure adapter cards and other peripherals
as you install them
Discovering Computers 2010: Living in a Digital World
Chapter 4
29Pages 230 – 231
Figure 4-27
Expansion Slots and Adapter Cards
• Removable flash memory includes:
– Memory cards, USB flash drives, and PC
Cards/ExpressCard modules
Discovering Computers 2010: Living in a Digital World
Chapter 4
30Page 231
Figure 4-28
Ports and Connectors
A port is the point at which a peripheral attaches to or
communicates with a system unit (sometimes referred
to as a jack)
A connector joins a cable to a port
Discovering Computers 2010: Living in a Digital World
Chapter 4
31Page 232
Click to view Web Link,
click Chapter 4, Click Web
Link from left navigation,
then click Digital Audio Port
below Chapter 4
Buses
• A bus allows the various
devices both inside and
attached to the system
unit to communicate with
each other
– Data bus
– Address bus
• Word size is the number
of bits the processor can
interpret and execute at a
given time
Discovering Computers 2010: Living in a Digital World
Chapter 4
32Page 237
Figure 4-36
Buses
• Expansion slots connect to expansion buses
• Common types of expansion buses include:
Discovering Computers 2010: Living in a Digital World
Chapter 4
33Page 238
PCI bus
PCI Express
bus
Accelerated
Graphics Port
USB and
FireWire bus
PC Card bus
Click to view Web Link,
click Chapter 4, Click Web
Link from left navigation,
then click FireWire
below Chapter 4
Bays
• A bay is an opening
inside the system unit in
which you can install
additional equipment
– A drive bay typically
holds disk drives
Discovering Computers 2010: Living in a Digital World
Chapter 4
34Page 238
Figure 4-37
Power Supply
The power supply converts the wall
outlet AC power into DC power
Some external peripherals have an AC
adapter, which is an external power
supply
Discovering Computers 2010: Living in a Digital World
Chapter 4
35Page 239
Putting It All Together
Home
Intel Core 2 Duo or Intel
Celeron Dual Core or
AMD Sempron
Minimum RAM: 2 GB
Small Office/
Home Office
Intel Core 2 Quad or
Intel Core 2 Extreme or
AMD Athlon FX or AMD
Athlon X2 Dual-Code
Minimum RAM: 4 GB
Mobile
Intel Core 2 Extreme or
AMD Turion X2
Minimum RAM: 2 GB
Discovering Computers 2010: Living in a Digital World
Chapter 4
36Page 239
Figure 4-38
Putting It All Together
Power
Intel Itanium 2 or AMD
Quad Core Opteron or
Intel Quad Core Xeon or
Sun UltraSPARC T2
Minimum RAM: 8 GB
Enterprise
Intel Core 2 Quad or
Intel Core 2 Extreme or
AMD Athlon FX or AMD
Athlon X2 Dual-Core
Minimum RAM: 4 GB
Discovering Computers 2010: Living in a Digital World
Chapter 4
37Page 239
Figure 4-38
Keeping Your Computer
or Mobile Device Clean
Clean your computer or mobile device once or twice a year
Turn off and unplug your computer or mobile device before
cleaning it
Use compressed air to blow away dust
Use an antistatic wipe to clean the exterior of the case and a
cleaning solution and soft cloth to clean the screen
Discovering Computers 2010: Living in a Digital World
Chapter 4
38Page 240
Summary
Components of the
system unit
How memory stores
data, instructions, and
information
Sequence of operations
that occur when a
computer executes an
instruction
Comparison of various
personal computer
processors on the
market today
How to clean the
exterior and interior of
a system unit
Discovering Computers 2010: Living in a Digital World
Chapter 4
39Page 241

More Related Content

What's hot

Introduction to Computer Hardware
Introduction to Computer HardwareIntroduction to Computer Hardware
Introduction to Computer Hardware
Joel Nelson
 
The different components of a computer system
The different components of a computer system The different components of a computer system
The different components of a computer system
Subagini Manivannan
 
Computer System Hardware
Computer System HardwareComputer System Hardware
Computer System Hardware
RCKSTR
 
A+ certification (Core hardware) Pc Maintenance
 A+ certification (Core hardware) Pc Maintenance  A+ certification (Core hardware) Pc Maintenance
A+ certification (Core hardware) Pc Maintenance
muhammadishrat11
 
Peripheral devices
Peripheral     devicesPeripheral     devices
Peripheral devicesAnnie Farooq
 
Mca i-fundamental of computer-u-1-computer hardware system
Mca  i-fundamental of  computer-u-1-computer hardware systemMca  i-fundamental of  computer-u-1-computer hardware system
Mca i-fundamental of computer-u-1-computer hardware system
Rai University
 
Computer hardware
Computer hardwareComputer hardware
Computer hardware
Chinmoy Jena
 
Typical Configuration of Computer System
Typical Configuration of Computer SystemTypical Configuration of Computer System
Typical Configuration of Computer System
Prof. Dr. K. Adisesha
 
Computer Fundamental
Computer FundamentalComputer Fundamental
Computer Fundamental
actanimation
 
Basic computer hardware and software
Basic computer hardware and softwareBasic computer hardware and software
Basic computer hardware and software
David RC
 
Basic hardware concept
Basic hardware concept Basic hardware concept
Basic hardware concept
Danilo Anos
 
What is Computer and How it Works ?
What is Computer and How it Works ?What is Computer and How it Works ?
Chapter1 introduction to computer systems
Chapter1 introduction to computer systemsChapter1 introduction to computer systems
Chapter1 introduction to computer systems
Muhammad Waqas
 
3 computer hardware and fundamentals edited for 1st sem
3 computer hardware and fundamentals edited for 1st sem3 computer hardware and fundamentals edited for 1st sem
3 computer hardware and fundamentals edited for 1st semVedpal Yadav
 
Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentals
archikabhatia
 
ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...
ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...
ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...
Kaushal Mehta
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
Tushar B Kute
 
Input computer hardware notes for UCEand UACE ICT
Input computer hardware notes for UCEand UACE ICTInput computer hardware notes for UCEand UACE ICT
Input computer hardware notes for UCEand UACE ICT
Mukalele Rogers
 
C hapter 1 types-and_components_of_computer_system[1][1]
C hapter 1   types-and_components_of_computer_system[1][1]C hapter 1   types-and_components_of_computer_system[1][1]
C hapter 1 types-and_components_of_computer_system[1][1]Pratik Gupta
 
COMPONENTS OF COMPUTER SYSTEM UNIT
COMPONENTS OF COMPUTER SYSTEM UNIT  COMPONENTS OF COMPUTER SYSTEM UNIT
COMPONENTS OF COMPUTER SYSTEM UNIT
imtiazalijoono
 

What's hot (20)

Introduction to Computer Hardware
Introduction to Computer HardwareIntroduction to Computer Hardware
Introduction to Computer Hardware
 
The different components of a computer system
The different components of a computer system The different components of a computer system
The different components of a computer system
 
Computer System Hardware
Computer System HardwareComputer System Hardware
Computer System Hardware
 
A+ certification (Core hardware) Pc Maintenance
 A+ certification (Core hardware) Pc Maintenance  A+ certification (Core hardware) Pc Maintenance
A+ certification (Core hardware) Pc Maintenance
 
Peripheral devices
Peripheral     devicesPeripheral     devices
Peripheral devices
 
Mca i-fundamental of computer-u-1-computer hardware system
Mca  i-fundamental of  computer-u-1-computer hardware systemMca  i-fundamental of  computer-u-1-computer hardware system
Mca i-fundamental of computer-u-1-computer hardware system
 
Computer hardware
Computer hardwareComputer hardware
Computer hardware
 
Typical Configuration of Computer System
Typical Configuration of Computer SystemTypical Configuration of Computer System
Typical Configuration of Computer System
 
Computer Fundamental
Computer FundamentalComputer Fundamental
Computer Fundamental
 
Basic computer hardware and software
Basic computer hardware and softwareBasic computer hardware and software
Basic computer hardware and software
 
Basic hardware concept
Basic hardware concept Basic hardware concept
Basic hardware concept
 
What is Computer and How it Works ?
What is Computer and How it Works ?What is Computer and How it Works ?
What is Computer and How it Works ?
 
Chapter1 introduction to computer systems
Chapter1 introduction to computer systemsChapter1 introduction to computer systems
Chapter1 introduction to computer systems
 
3 computer hardware and fundamentals edited for 1st sem
3 computer hardware and fundamentals edited for 1st sem3 computer hardware and fundamentals edited for 1st sem
3 computer hardware and fundamentals edited for 1st sem
 
Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentals
 
ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...
ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...
ICT, Basic of Computer, Hardware, Various parts of computer hardware, What is...
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
 
Input computer hardware notes for UCEand UACE ICT
Input computer hardware notes for UCEand UACE ICTInput computer hardware notes for UCEand UACE ICT
Input computer hardware notes for UCEand UACE ICT
 
C hapter 1 types-and_components_of_computer_system[1][1]
C hapter 1   types-and_components_of_computer_system[1][1]C hapter 1   types-and_components_of_computer_system[1][1]
C hapter 1 types-and_components_of_computer_system[1][1]
 
COMPONENTS OF COMPUTER SYSTEM UNIT
COMPONENTS OF COMPUTER SYSTEM UNIT  COMPONENTS OF COMPUTER SYSTEM UNIT
COMPONENTS OF COMPUTER SYSTEM UNIT
 

Similar to Lecture-2(1): Computer Hardware & System Components

Topic 2 system unit components
Topic 2   system unit componentsTopic 2   system unit components
Topic 2 system unit componentsChristian Sampaga
 
Chapter 04
Chapter 04Chapter 04
Lesson 2.1. System Unit.pptx
Lesson 2.1. System Unit.pptxLesson 2.1. System Unit.pptx
Lesson 2.1. System Unit.pptx
JojamesArnaldoGaddi
 
Chapter 4 the components of the system unit
Chapter 4   the components of the system unitChapter 4   the components of the system unit
Chapter 4 the components of the system unit
haider ali
 
Week1 lec2 computer_system_components
Week1 lec2 computer_system_componentsWeek1 lec2 computer_system_components
Week1 lec2 computer_system_components
Resty Aldana
 
Chapter04
Chapter04Chapter04
Chapter04galaxy
 
Chapter 02 system unit csc & tts
Chapter 02 system unit csc & ttsChapter 02 system unit csc & tts
Chapter 02 system unit csc & ttsHisyam Rosly
 
Components of system unit-chapter-04.pptx
Components of system unit-chapter-04.pptxComponents of system unit-chapter-04.pptx
Components of system unit-chapter-04.pptx
AnmolJalil
 
Discovering Computers: Chapter 04
Discovering Computers: Chapter 04Discovering Computers: Chapter 04
Discovering Computers: Chapter 04
Anna Stirling
 
Chapter 04 (lec 5)
Chapter 04 (lec 5)Chapter 04 (lec 5)
Chapter 04 (lec 5)Iqra Zaheer
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
Abdur Rahman
 
Discovering computer 2012
Discovering computer 2012Discovering computer 2012
Discovering computer 2012Saiful Msbm
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
Sukanya Ben
 
Chapter 4 The Components Of The System Unit
Chapter 4 The Components Of The System UnitChapter 4 The Components Of The System Unit
Chapter 4 The Components Of The System Unitnorzaini
 
Chapter04 system unit
Chapter04 system unitChapter04 system unit
Chapter04 system unit
ellen_rama
 
Final ict
Final ictFinal ict
Final ict
anasazwar7995
 
System unit
System unitSystem unit
System unit
Dhani Ahmad
 

Similar to Lecture-2(1): Computer Hardware & System Components (20)

Topic 2 system unit components
Topic 2   system unit componentsTopic 2   system unit components
Topic 2 system unit components
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
Lesson 2.1. System Unit.pptx
Lesson 2.1. System Unit.pptxLesson 2.1. System Unit.pptx
Lesson 2.1. System Unit.pptx
 
Chapter 4 the components of the system unit
Chapter 4   the components of the system unitChapter 4   the components of the system unit
Chapter 4 the components of the system unit
 
Week1 lec2 computer_system_components
Week1 lec2 computer_system_componentsWeek1 lec2 computer_system_components
Week1 lec2 computer_system_components
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
Chapter04
Chapter04Chapter04
Chapter04
 
Chapter 02 system unit csc & tts
Chapter 02 system unit csc & ttsChapter 02 system unit csc & tts
Chapter 02 system unit csc & tts
 
Components of system unit-chapter-04.pptx
Components of system unit-chapter-04.pptxComponents of system unit-chapter-04.pptx
Components of system unit-chapter-04.pptx
 
Discovering Computers: Chapter 04
Discovering Computers: Chapter 04Discovering Computers: Chapter 04
Discovering Computers: Chapter 04
 
Chapter 04 (lec 5)
Chapter 04 (lec 5)Chapter 04 (lec 5)
Chapter 04 (lec 5)
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
Discovering computer 2012
Discovering computer 2012Discovering computer 2012
Discovering computer 2012
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
Chapter 4 The Components Of The System Unit
Chapter 4 The Components Of The System UnitChapter 4 The Components Of The System Unit
Chapter 4 The Components Of The System Unit
 
Week 2
Week 2Week 2
Week 2
 
Chapter04 system unit
Chapter04 system unitChapter04 system unit
Chapter04 system unit
 
Chapter04
Chapter04Chapter04
Chapter04
 
Final ict
Final ictFinal ict
Final ict
 
System unit
System unitSystem unit
System unit
 

More from Mubashir Ali

Lecture-3: Traditional Approaches to System Development and Enterprise Engine...
Lecture-3: Traditional Approaches to System Development and Enterprise Engine...Lecture-3: Traditional Approaches to System Development and Enterprise Engine...
Lecture-3: Traditional Approaches to System Development and Enterprise Engine...
Mubashir Ali
 
Lecture-2: Zachman Framework for Enterprise Architecture
Lecture-2: Zachman Framework for Enterprise ArchitectureLecture-2: Zachman Framework for Enterprise Architecture
Lecture-2: Zachman Framework for Enterprise Architecture
Mubashir Ali
 
Lecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block BuildingLecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block Building
Mubashir Ali
 
Lecture-2: Web development application development process model
Lecture-2: Web development application development process modelLecture-2: Web development application development process model
Lecture-2: Web development application development process model
Mubashir Ali
 
Lecture-1: Introduction to web engineering - course overview and grading scheme
Lecture-1: Introduction to web engineering - course overview and grading schemeLecture-1: Introduction to web engineering - course overview and grading scheme
Lecture-1: Introduction to web engineering - course overview and grading scheme
Mubashir Ali
 
Lecture-1: Introduction to system integration and architecture - course overv...
Lecture-1: Introduction to system integration and architecture - course overv...Lecture-1: Introduction to system integration and architecture - course overv...
Lecture-1: Introduction to system integration and architecture - course overv...
Mubashir Ali
 
Lecture-7: World Wide Web (WWW) & ECommerce
Lecture-7: World Wide Web (WWW) & ECommerceLecture-7: World Wide Web (WWW) & ECommerce
Lecture-7: World Wide Web (WWW) & ECommerce
Mubashir Ali
 
Lecture-6: The Internet
Lecture-6: The Internet Lecture-6: The Internet
Lecture-6: The Internet
Mubashir Ali
 
Lecture-5: Introduction to Networks & Data Communication
Lecture-5: Introduction to Networks & Data Communication Lecture-5: Introduction to Networks & Data Communication
Lecture-5: Introduction to Networks & Data Communication
Mubashir Ali
 
Lecture-4: Introduction to Programming & Databases
Lecture-4: Introduction to Programming & DatabasesLecture-4: Introduction to Programming & Databases
Lecture-4: Introduction to Programming & Databases
Mubashir Ali
 
Lecture-3: Operating System & Application Softwares
Lecture-3: Operating System & Application SoftwaresLecture-3: Operating System & Application Softwares
Lecture-3: Operating System & Application Softwares
Mubashir Ali
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
Mubashir Ali
 
Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...
Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...
Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...
Mubashir Ali
 
Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...
Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...
Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...
Mubashir Ali
 
Lect-6&7: Network Diagrams, PERT and CPM
Lect-6&7: Network Diagrams, PERT and CPMLect-6&7: Network Diagrams, PERT and CPM
Lect-6&7: Network Diagrams, PERT and CPM
Mubashir Ali
 
Lect-5: Work Breakdown Structure and Project Cost Estimation
Lect-5: Work Breakdown Structure and Project Cost EstimationLect-5: Work Breakdown Structure and Project Cost Estimation
Lect-5: Work Breakdown Structure and Project Cost Estimation
Mubashir Ali
 
Lect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPMLect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPM
Mubashir Ali
 
Lect-4: UML diagrams - Unified Modeling Language - SPM
Lect-4: UML diagrams - Unified Modeling Language - SPMLect-4: UML diagrams - Unified Modeling Language - SPM
Lect-4: UML diagrams - Unified Modeling Language - SPM
Mubashir Ali
 
Lect-3: Statement of Work - Write effective SOW for Software Project - Template
Lect-3: Statement of Work - Write effective SOW for Software Project - TemplateLect-3: Statement of Work - Write effective SOW for Software Project - Template
Lect-3: Statement of Work - Write effective SOW for Software Project - Template
Mubashir Ali
 
Lect-2: Overview and Traditional SPM, Classic mistakes
Lect-2: Overview and Traditional SPM, Classic mistakesLect-2: Overview and Traditional SPM, Classic mistakes
Lect-2: Overview and Traditional SPM, Classic mistakes
Mubashir Ali
 

More from Mubashir Ali (20)

Lecture-3: Traditional Approaches to System Development and Enterprise Engine...
Lecture-3: Traditional Approaches to System Development and Enterprise Engine...Lecture-3: Traditional Approaches to System Development and Enterprise Engine...
Lecture-3: Traditional Approaches to System Development and Enterprise Engine...
 
Lecture-2: Zachman Framework for Enterprise Architecture
Lecture-2: Zachman Framework for Enterprise ArchitectureLecture-2: Zachman Framework for Enterprise Architecture
Lecture-2: Zachman Framework for Enterprise Architecture
 
Lecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block BuildingLecture-3: Introduction to html - Basic Structure & Block Building
Lecture-3: Introduction to html - Basic Structure & Block Building
 
Lecture-2: Web development application development process model
Lecture-2: Web development application development process modelLecture-2: Web development application development process model
Lecture-2: Web development application development process model
 
Lecture-1: Introduction to web engineering - course overview and grading scheme
Lecture-1: Introduction to web engineering - course overview and grading schemeLecture-1: Introduction to web engineering - course overview and grading scheme
Lecture-1: Introduction to web engineering - course overview and grading scheme
 
Lecture-1: Introduction to system integration and architecture - course overv...
Lecture-1: Introduction to system integration and architecture - course overv...Lecture-1: Introduction to system integration and architecture - course overv...
Lecture-1: Introduction to system integration and architecture - course overv...
 
Lecture-7: World Wide Web (WWW) & ECommerce
Lecture-7: World Wide Web (WWW) & ECommerceLecture-7: World Wide Web (WWW) & ECommerce
Lecture-7: World Wide Web (WWW) & ECommerce
 
Lecture-6: The Internet
Lecture-6: The Internet Lecture-6: The Internet
Lecture-6: The Internet
 
Lecture-5: Introduction to Networks & Data Communication
Lecture-5: Introduction to Networks & Data Communication Lecture-5: Introduction to Networks & Data Communication
Lecture-5: Introduction to Networks & Data Communication
 
Lecture-4: Introduction to Programming & Databases
Lecture-4: Introduction to Programming & DatabasesLecture-4: Introduction to Programming & Databases
Lecture-4: Introduction to Programming & Databases
 
Lecture-3: Operating System & Application Softwares
Lecture-3: Operating System & Application SoftwaresLecture-3: Operating System & Application Softwares
Lecture-3: Operating System & Application Softwares
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...
Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...
Lecture-1: Introduction to Computer - Basic Definitions & Concepts- Computer ...
 
Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...
Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...
Software Matrics (Product - Process - Resource - Matrics) - (LOC, FP, Complex...
 
Lect-6&7: Network Diagrams, PERT and CPM
Lect-6&7: Network Diagrams, PERT and CPMLect-6&7: Network Diagrams, PERT and CPM
Lect-6&7: Network Diagrams, PERT and CPM
 
Lect-5: Work Breakdown Structure and Project Cost Estimation
Lect-5: Work Breakdown Structure and Project Cost EstimationLect-5: Work Breakdown Structure and Project Cost Estimation
Lect-5: Work Breakdown Structure and Project Cost Estimation
 
Lect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPMLect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPM
 
Lect-4: UML diagrams - Unified Modeling Language - SPM
Lect-4: UML diagrams - Unified Modeling Language - SPMLect-4: UML diagrams - Unified Modeling Language - SPM
Lect-4: UML diagrams - Unified Modeling Language - SPM
 
Lect-3: Statement of Work - Write effective SOW for Software Project - Template
Lect-3: Statement of Work - Write effective SOW for Software Project - TemplateLect-3: Statement of Work - Write effective SOW for Software Project - Template
Lect-3: Statement of Work - Write effective SOW for Software Project - Template
 
Lect-2: Overview and Traditional SPM, Classic mistakes
Lect-2: Overview and Traditional SPM, Classic mistakesLect-2: Overview and Traditional SPM, Classic mistakes
Lect-2: Overview and Traditional SPM, Classic mistakes
 

Recently uploaded

Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 

Recently uploaded (20)

Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 

Lecture-2(1): Computer Hardware & System Components

  • 1. LECTURE 02 HARDWARE: COMPUTER SYSTEM & COMPONENTS Mr. Mubashir Ali Lecturer(Dept. of Computer Science) dr.mubashirali1@gmail.com
  • 2. Living in a Digital World Discovering Computers 2010
  • 3. Objectives Overview Differentiate among various styles of system units on desktop computers, notebook computers, and mobile devices Identify chips, adapter cards, and other components of a motherboard Describe the control unit and arithmetic logic unit components of a processor, and explain the four steps in a machine cycle Identify characteristics of various personal computer processors on the market today, and describe the ways processors are cooled Define a bit and describe how a series of bits represents data Explain how program instructions transfer in and out of memory Discovering Computers 2010: Living in a Digital World Chapter 4 3See Page 209 for Detailed Objectives
  • 4. Objectives Overview Differentiate among the various types of memory Describe the purpose and types of expansion slots and adapter cards, and differentiate among slots for various removable flash memory devices Differentiate between a port and a connector, and explain the differences among a USB port, FireWire port, Bluetooth port, SCSI port, eSATA port, IrDA port, serial port, and MIDI port Describe the types of buses in a computer Explain the purpose of a power supply and describe how it keeps cool Understand how to clean a system unit on a computer or mobile device Discovering Computers 2010: Living in a Digital World Chapter 4 4See Page 209 for Detailed Objectives
  • 5. The System Unit • The system unit is a case that contains electronic components of the computer used to process data Discovering Computers 2010: Living in a Digital World Chapter 4 5Page 210 Figure 4-1
  • 6. The System Unit • The inside of the system unit on a desktop personal computer includes: Discovering Computers 2010: Living in a Digital World Chapter 4 6Page 211 Figure 4-2 Drive bay(s) Power supply Sound card Video card Processor Memory
  • 7. The System Unit • The motherboard is the main circuit board of the system unit – A computer chip contains integrated circuits Discovering Computers 2010: Living in a Digital World Chapter 4 7Page 212 Figure 4-3
  • 8. Processor • The processor, also called the central processing unit (CPU), interprets and carries out the basic instructions that operate a computer – Contain a control unit and an arithmetic logic unit (ALU) Discovering Computers 2010: Living in a Digital World Chapter 4 8Page 213 Multi-core processor Dual-core processor Quad-core processor
  • 9. Processor Discovering Computers 2010: Living in a Digital World Chapter 4 9Page 213 Figure 4-4
  • 10. Processor • The control unit is the component of the processor that directs and coordinates most of the operations in the computer • The arithmetic logic unit (ALU) performs arithmetic, comparison, and other operations Discovering Computers 2010: Living in a Digital World Chapter 4 10Page 214 Click to view Web Link, click Chapter 4, Click Web Link from left navigation, then click Control Unit below Chapter 4
  • 11. Processor • For every instruction, a processor repeats a set of four basic operations, which comprise a machine cycle Discovering Computers 2010: Living in a Digital World Chapter 4 11Page 215 Figure 4-5
  • 12. Processor • Most current personal computers support pipelining – Processor begins fetching a second instruction before it completes the machine cycle for the first instruction Discovering Computers 2010: Living in a Digital World Chapter 4 12Pages 215 – 216 Figure 4-6
  • 13. Processor The processor contains registers, that temporarily hold data and instructions The system clock controls the timing of all computer operations • The pace of the system clock is called the clock speed, and is measured in gigahertz (GHz) Discovering Computers 2010: Living in a Digital World Chapter 4 13Page 216
  • 14. Processor • Parallel processing uses multiple processors simultaneously to execute a single program or task – Massively parallel processing involves hundreds or thousands of processors Discovering Computers 2010: Living in a Digital World Chapter 4 14Page 220 Figure 4-11
  • 15. Data Representation Analog signals are continuous and vary in strength and quality Digital signals are in one of two states: on or off • Most computers are digital • The binary system uses two unique digits (0 and 1) • Bits and bytes Discovering Computers 2010: Living in a Digital World Chapter 4 15Page 221
  • 16. Data Representation A computer circuit represents the 0 or the 1 electronically by the presence or absence of an electrical charge Eight bits grouped together as a unit are called a byte. A byte represents a single character in the computer Discovering Computers 2010: Living in a Digital World Chapter 4 16Page 221 Figures 4-12 – 4-13
  • 17. Data Representation • ASCII (American Standard Code for Information Interchange) is the most widely used coding scheme to represent data Discovering Computers 2010: Living in a Digital World Chapter 4 17Page 221 Figure 4-14
  • 18. Data Representation Discovering Computers 2010: Living in a Digital World Chapter 4 18Page 222 Figure 4-15
  • 19. Memory • Memory consists of electronic components that store instructions waiting to be executed by the processor, data needed by those instructions, and the results of processing the data • Stores three basic categories of items: Discovering Computers 2010: Living in a Digital World Chapter 4 19Page 223 The operating system and other system software Application programs Data being processed and the resulting information
  • 20. Memory • Each location in memory has an address • Memory size is measured in kilobytes (KB or K), megabytes (MB), gigabytes (GB), or terabytes (TB) Discovering Computers 2010: Living in a Digital World Chapter 4 20Page 223 Figure 4-17
  • 21. Memory • The system unit contains two types of memory: Discovering Computers 2010: Living in a Digital World Chapter 4 21Pages 223 - 224 Volatile memory Loses its contents when power is turned off Example includes RAM Nonvolatile memory Does not lose contents when power is removed Examples include ROM, flash memory, and CMOS
  • 22. Memory • Three basic types of RAM chips exist: Discovering Computers 2010: Living in a Digital World Chapter 4 22Page 225 Figure 4-19 Dynamic RAM (DRAM) Static RAM (SRAM) Magnetoresistive RAM (MRAM)
  • 23. Memory • RAM chips usually reside on a memory module and are inserted into memory slots Discovering Computers 2010: Living in a Digital World Chapter 4 23Page 225 Figure 4-20
  • 24. Memory • Memory cache speeds the processes of the computer because it stores frequently used instructions and data Discovering Computers 2010: Living in a Digital World Chapter 4 24Page 227 Figure 4-22 Click to view Web Link, click Chapter 4, Click Web Link from left navigation, then click Windows ReadyBoost below Chapter 4
  • 25. Memory Read-only memory (ROM) refers to memory chips storing permanent data and instructions • Firmware A PROM (programmable read-only memory) chip is a blank ROM chip that can be written to permanently • EEPROM can be erased Discovering Computers 2010: Living in a Digital World Chapter 4 25Page 228 Click to view Web Link, click Chapter 4, Click Web Link from left navigation, then click ROM below Chapter 4
  • 26. Memory • Flash memory can be erased electronically and rewritten – CMOS technology provides high speeds and consumes little power Discovering Computers 2010: Living in a Digital World Chapter 4 26Pages 228 – 229 Figure 4-23
  • 27. Memory • Access time is the amount of time it takes the processor to read from memory – Measured in nanoseconds Discovering Computers 2010: Living in a Digital World Chapter 4 27Page 229 Figures 4-24 – 4-25
  • 28. Expansion Slots and Adapter Cards • An expansion slot is a socket on the motherboard that can hold an adapter card • An adapter card enhances functions of a component of the system unit and/or provides connections to peripherals – Sound card and video card Discovering Computers 2010: Living in a Digital World Chapter 4 28Page 230 Figure 4-26 Click to view Web Link, click Chapter 4, Click Web Link from left navigation, then click Video Cards below Chapter 4
  • 29. Expansion Slots and Adapter Cards • With Plug and Play, the computer automatically can configure adapter cards and other peripherals as you install them Discovering Computers 2010: Living in a Digital World Chapter 4 29Pages 230 – 231 Figure 4-27
  • 30. Expansion Slots and Adapter Cards • Removable flash memory includes: – Memory cards, USB flash drives, and PC Cards/ExpressCard modules Discovering Computers 2010: Living in a Digital World Chapter 4 30Page 231 Figure 4-28
  • 31. Ports and Connectors A port is the point at which a peripheral attaches to or communicates with a system unit (sometimes referred to as a jack) A connector joins a cable to a port Discovering Computers 2010: Living in a Digital World Chapter 4 31Page 232 Click to view Web Link, click Chapter 4, Click Web Link from left navigation, then click Digital Audio Port below Chapter 4
  • 32. Buses • A bus allows the various devices both inside and attached to the system unit to communicate with each other – Data bus – Address bus • Word size is the number of bits the processor can interpret and execute at a given time Discovering Computers 2010: Living in a Digital World Chapter 4 32Page 237 Figure 4-36
  • 33. Buses • Expansion slots connect to expansion buses • Common types of expansion buses include: Discovering Computers 2010: Living in a Digital World Chapter 4 33Page 238 PCI bus PCI Express bus Accelerated Graphics Port USB and FireWire bus PC Card bus Click to view Web Link, click Chapter 4, Click Web Link from left navigation, then click FireWire below Chapter 4
  • 34. Bays • A bay is an opening inside the system unit in which you can install additional equipment – A drive bay typically holds disk drives Discovering Computers 2010: Living in a Digital World Chapter 4 34Page 238 Figure 4-37
  • 35. Power Supply The power supply converts the wall outlet AC power into DC power Some external peripherals have an AC adapter, which is an external power supply Discovering Computers 2010: Living in a Digital World Chapter 4 35Page 239
  • 36. Putting It All Together Home Intel Core 2 Duo or Intel Celeron Dual Core or AMD Sempron Minimum RAM: 2 GB Small Office/ Home Office Intel Core 2 Quad or Intel Core 2 Extreme or AMD Athlon FX or AMD Athlon X2 Dual-Code Minimum RAM: 4 GB Mobile Intel Core 2 Extreme or AMD Turion X2 Minimum RAM: 2 GB Discovering Computers 2010: Living in a Digital World Chapter 4 36Page 239 Figure 4-38
  • 37. Putting It All Together Power Intel Itanium 2 or AMD Quad Core Opteron or Intel Quad Core Xeon or Sun UltraSPARC T2 Minimum RAM: 8 GB Enterprise Intel Core 2 Quad or Intel Core 2 Extreme or AMD Athlon FX or AMD Athlon X2 Dual-Core Minimum RAM: 4 GB Discovering Computers 2010: Living in a Digital World Chapter 4 37Page 239 Figure 4-38
  • 38. Keeping Your Computer or Mobile Device Clean Clean your computer or mobile device once or twice a year Turn off and unplug your computer or mobile device before cleaning it Use compressed air to blow away dust Use an antistatic wipe to clean the exterior of the case and a cleaning solution and soft cloth to clean the screen Discovering Computers 2010: Living in a Digital World Chapter 4 38Page 240
  • 39. Summary Components of the system unit How memory stores data, instructions, and information Sequence of operations that occur when a computer executes an instruction Comparison of various personal computer processors on the market today How to clean the exterior and interior of a system unit Discovering Computers 2010: Living in a Digital World Chapter 4 39Page 241