SlideShare uma empresa Scribd logo
1 de 55
Principles of Information
Systems, Tenth Edition
Chapter 3
Hardware: Input, Processing, and
Output Devices
Principles and Learning Objectives
• Computer hardware must be carefully selected to
meet the evolving needs of the organization and of
its supporting information systems
– Describe the role of the central processing unit and
main memory
– State the advantages of multiprocessing and parallel
computing systems, and provide examples of the
types of problems they address

Principles of Information Systems, Tenth Edition

2
Principles and Learning Objectives
(continued)
– Describe the access methods, capacity, and
portability of various secondary storage devices
– Identify and discuss the speed, functionality, and
importance of various input and output devices
– Identify the characteristics of and discuss the usage
of various classes of single-user and multiuser
computer systems

Principles of Information Systems, Tenth Edition

3
Principles and Learning Objectives
(continued)
• The computer hardware industry is rapidly
changing and highly competitive, creating an
environment ripe for technological breakthroughs
– Describe Moore’s Law and discuss its implications
for future computer hardware developments
– Give an example of recent innovations in computer
CPU chips, memory devices, and input/output
devices

Principles of Information Systems, Tenth Edition

4
Principles and Learning Objectives
(continued)
• The computer hardware industry and users are
implementing green computing designs and
products
– Define the term green computing and identify the
primary goals of this program
– Identify several benefits of green computing
initiatives that have been broadly adopted

Principles of Information Systems, Tenth Edition

5
Why Learn About Hardware?
• Organizations invest in computer hardware to:
–
–
–
–
–

Improve worker productivity
Increase revenue, reduce costs
Provide better customer service
Speed up time-to-market
Enable collaboration among employees

• Managers:
– Are expected to help define the business needs that
the hardware must support

Principles of Information Systems, Tenth Edition

6
Computer Systems: Integrating the
Power of Technology
• Hardware components:
– Central processing unit (CPU):
• Arithmetic/logic unit, the control unit, and the register
areas

– Arithmetic/logic unit (ALU):
• Performs mathematical calculations and makes logical
comparisons

– Control unit :
• Sequentially accesses program instructions, decodes
them, and coordinates the flow of data in and out of
the ALU, registers, primary storage, and even
secondary storage and various output devices
Principles of Information Systems, Tenth Edition

7
Computer Systems: Integrating the
Power of Technology (continued)
– Registers:
• High-speed storage areas
• Used to temporarily hold small units of program
instructions and data

– Primary storage:
• Also called main memory
• Closely associated with the CPU

Principles of Information Systems, Tenth Edition

8
Computer Systems: Integrating the
Power of Technology (continued)

Principles of Information Systems, Tenth Edition

9
Hardware Components in Action
•
•
•
•

Step 1: Fetch instruction
Step 2: Decode instruction
Step 3: Execute instruction
Step 4: Store results

Principles of Information Systems, Tenth Edition

10
Hardware Components in Action
(continued)

Principles of Information Systems, Tenth Edition

11
Processing and Memory Devices:
Power, Speed, and Capacity
• System unit:
– Houses the components responsible for processing
(the CPU and memory)

• All other computer system devices are:
– Linked either directly or indirectly into the system
unit housing

Principles of Information Systems, Tenth Edition

12
Processing Characteristics and
Functions
• Machine cycle time is measured in:
– Nanoseconds (1 billionth of a second)
– Picoseconds (1 trillionth of a second)
– MIPS (millions of instructions per second)

Principles of Information Systems, Tenth Edition

13
Processing Characteristics and
Functions (continued)
• Clock speed:
– Series of electronic pulses produced at a
predetermined rate that affects machine cycle time
– Often measured in:
• Megahertz (MHz): millions of cycles per second
• Gigahertz (GHz): billions of cycles per second

• Microcode:
– Predefined, elementary circuits and logical
operations that the processor performs when it
executes an instruction
Principles of Information Systems, Tenth Edition

14
Processing Characteristics and
Functions (continued)
• Physical characteristics of the CPU:
– Most CPUs are:
• Collections of digital circuits imprinted on silicon
wafers, or chips, each no bigger than the tip of a
pencil eraser

– Moore’s Law:
• Hypothesis stating that transistor densities on a single
chip will double every two years

Principles of Information Systems, Tenth Edition

15
Memory Characteristics and Functions
• Main memory
– Provides the CPU with a working storage area for
programs and data
– Rapidly provides data and instructions to the CPU

• Storage capacity
– Eight bits together form a byte (B)

Principles of Information Systems, Tenth Edition

16
Memory Characteristics and Functions
(continued)

Principles of Information Systems, Tenth Edition

17
Memory Characteristics and Functions
(continued)
• Types of memory:
– Random access memory (RAM):
• Temporary and volatile

– Types of RAM:
•
•
•
•

DRAM (Dynamic RAM)
DDR2 SDRAM and DDR3 SDRAM
Static Random Access Memory (SRAM)
Double Data Rate Synchronous Dynamic Random
Access Memory (DDR SDRAM)

Principles of Information Systems, Tenth Edition

18
Memory Characteristics and Functions
(continued)
• Types of memory (continued):
– Read-only memory (ROM):
• Nonvolatile
• Provides permanent storage for data and instructions
that do not change

– Cache memory:
• High-speed memory that a processor can access
more rapidly than main memory

Principles of Information Systems, Tenth Edition

19
Memory Characteristics and Functions
(continued)

Principles of Information Systems, Tenth Edition

20
Multiprocessing
• Multiprocessing:
– Simultaneous execution of two or more instructions
at the same time

• Coprocessor:
– Speeds processing

• Multicore microprocessor:
– Combines two or more independent processors into
a single computer

Principles of Information Systems, Tenth Edition

21
Multiprocessing (continued)
• Graphics processing unit (GPU):
– A specialized processor that offloads the tasks
associated with 3D graphics rendering from the CPU
– Can also be used in certain applications that require
massive vector operations to provide performance
several orders of magnitude higher than a traditional
CPU

Principles of Information Systems, Tenth Edition

22
Parallel Computing
• Parallel computing:
– Simultaneous execution of the same task on multiple
processors to obtain results faster

• Massively parallel processing:
– Links hundreds or thousands of processors to
operate at the same time

• Grid computing:
– Use of a collection of computers to work in a
coordinated manner to solve a common problem

Principles of Information Systems, Tenth Edition

23
Secondary Storage
• Compared with memory, offers the advantages of
nonvolatility, greater capacity, and greater
economy
• On a cost-per-megabyte basis:
– Secondary storage is considerably less expensive
than primary memory

• Determined by the information system’s objectives:
– The access methods, storage capacities, and
portability required of secondary storage media

Principles of Information Systems, Tenth Edition

24
Access Methods
• Sequential access:
– Data must be retrieved in the order in which it is
stored
– Devices used called sequential access storage
devices (SASDs)

• Direct access:
– Records can be retrieved in any order
– Devices used are called direct access storage
devices (DASDs)

Principles of Information Systems, Tenth Edition

25
Secondary Storage Devices
• Magnetic tapes:
– Primarily for storing backups of critical organizational
data

• Magnetic disks:
– Direct-access storage device

• Redundant array of independent/inexpensive disks
(RAID):
– Method of storing data that generates extra bits of
data from existing data

• Virtual tape:
– Storage technology for less frequently needed data
Principles of Information Systems, Tenth Edition

26
Secondary Storage Devices
(continued)
• Optical secondary storage devices:
– Use special lasers to read and write data
– Compact disc read-only memory (CD-ROM):
• Storage capacity is 740 MB

– Digital video disc (DVD):
• Looks like a CD but can store about 135 minutes of
digital video
• Data transfer rate is 1.352 MB per second

Principles of Information Systems, Tenth Edition

27
Secondary Storage Devices
(continued)
• Solid state secondary storage devices:
– Store data in memory chips rather than magnetic or
optical media
– Have few moving parts, so they are less fragile than
hard disk drives
– Disadvantages of SSD
• High cost per GB of data storage
• Lower capacity compared to current hard drives

Principles of Information Systems, Tenth Edition

28
Enterprise Storage Options
• Attached storage:
– Methods include the tape, hard disks, and optical
devices

• Network-attached storage (NAS):
– Hard disk storage that is set up with its own network
address rather than being attached to a computer

• Storage area network (SAN):
– Special-purpose, high-speed network that provides
direct connections among data-storage devices and
computers
Principles of Information Systems, Tenth Edition

29
Enterprise Storage Options
(continued)

Principles of Information Systems, Tenth Edition

30
Enterprise Storage Options
(continued)
• Storage as a service:
– A data storage model where a data storage service
provider rents space to people and organizations
– Providers:
• AT&T, Aviva, Amazon.com
• EMC, Google, Microsoft, and ParaScale

Principles of Information Systems, Tenth Edition

31
Input and Output Devices: The
Gateway to Computer Systems
• Input and output devices:
– Gateways to the computer system
– Part of a computer’s user interface

• Organizations:
– Should keep their business goals in mind when
selecting input and output devices

Principles of Information Systems, Tenth Edition

32
Characteristics and Functionality
• Data can be human-readable or machine-readable
• Data entry:
– Converts human-readable data into machinereadable form

• Data input:
– Transfers machine-readable data into system

• Source data automation
– Capturing and editing data where the data is initially
created and in a form that can be directly input to a
computer
Principles of Information Systems, Tenth Edition

33
Input Devices
• Devices used to input general types of data:
–
–
–
–
–
–
–
–

Personal computer input devices
Speech recognition technology
Digital cameras
Terminals
Scanning devices
Optical data readers
Magnetic ink character recognition (MICR) devices
Magnetic stripe card

Principles of Information Systems, Tenth Edition

34
Input Devices (continued)
• Devices used to input general types of data
(continued):
–
–
–
–
–
–
–
–

Chip-and-PIN cards
Point-of-sale devices
Contactless cards
Automated teller machine (ATM) devices
Pen input devices
Touch-sensitive screens
Bar-code scanners
Radio frequency identification

Principles of Information Systems, Tenth Edition

35
Input Devices (continued)

Principles of Information Systems, Tenth Edition

36
Output Devices
• Display monitors:
– Used to display the output from the computer

• Plasma display:
– Uses thousands of smart cells (pixels) consisting of
electrodes and neon and xenon gases that are
electrically turned into plasma to emit light

• LCD displays:
– Flat displays that use liquid crystals

• Digital audio player:
– Can store, organize, and play digital music files
Principles of Information Systems, Tenth Edition

37
Output Devices (continued)
• Organic light-emitting diodes (OLEDs):
– Uses a layer of organic material sandwiched
between two conductors

• Printers and plotters:
– Two main types of printers are laser printers and
inkjet printers
– Plotters are a type of hard-copy output device used
for general design work

• E-books:
– Digital media equivalent of a conventional printed
book
Principles of Information Systems, Tenth Edition

38
Output Devices (continued)

Principles of Information Systems, Tenth Edition

39
Computer System Types
• Special-purpose computers:
– Used for limited applications by military and scientific
research groups such as the CIA and NASA

• General-purpose computers:
– Used for a wide variety of applications

Principles of Information Systems, Tenth Edition

40
Computer System Types (continued)

Principles of Information Systems, Tenth Edition

41
Computer System Types (continued)

Principles of Information Systems, Tenth Edition

42
Portable Computers
• Handheld computers:
– Single-user computers that provide ease of
portability because of their small size

• Laptop computer:
– Personal computer designed for use by mobile users

• Notebook computer:
– Lightweight computer that weighs less than 5
pounds

Principles of Information Systems, Tenth Edition

43
Portable Computers (continued)
• Netbook computer:
– The smallest, lightest, least expensive member of
the laptop computer family

• Tablet computers:
– Portable, lightweight computers with no keyboard

Principles of Information Systems, Tenth Edition

44
Nonportable Single-User Computers
• Thin client:
– Low-cost, centrally managed computer with no extra
drives

• Desktop computers:
– Single-user computer systems that are highly
versatile

Principles of Information Systems, Tenth Edition

45
Nonportable Single-User Computers
(continued)
• Nettop computer:
– Inexpensive desktop computer designed to be
smaller, lighter, and consume much less power than
a traditional desktop computer

• Workstations:
– More powerful than personal computers but still
small enough to fit on a desktop

Principles of Information Systems, Tenth Edition

46
Multiple-User Computer Systems
• Server:
– Used by many users to perform a specific task, such
as running network or Internet applications

• Scalability:
– The ability to increase the processing capability of a
computer system so that it can handle more users,
more data, or more transactions

• Blade server:
– Houses many computer motherboards

Principles of Information Systems, Tenth Edition

47
Multiple-User Computer Systems
(continued)
• Mainframe computer:
– Large, powerful computer shared by dozens or even
hundreds of concurrent users connected to the
machine over a network

• Supercomputers:
– The most powerful computers with the fastest
processing speed and highest performance

Principles of Information Systems, Tenth Edition

48
Multiple-User Computer Systems
(continued)

Principles of Information Systems, Tenth Edition

49
Multiple-User Computer Systems
(continued)

Principles of Information Systems, Tenth Edition

50
Green Computing
• Concerned with the:
– Efficient and environmentally responsible design,
manufacture, operation, and disposal of IS-related
products

• Goals:
– Reduce the use of hazardous material
– Enable companies to lower their power-related costs
– Enable the safe disposal or recycling of some
700,000 tons of computers each year
Principles of Information Systems, Tenth Edition

51
Green Computing (continued)

Principles of Information Systems, Tenth Edition

52
Summary
• Computer hardware:
– Should be selected to meet specific user and
business requirements

• Random access memory (RAM):
– Temporary and volatile

• ROM (read-only memory):
– Nonvolatile
– Contains permanent program instructions for
execution by the CPU

Principles of Information Systems, Tenth Edition

53
Summary (continued)
• Multicore microprocessor:
– Combines two or more independent processors into
a single computer so they can share the workload

• Computer systems:
– Can store larger amounts of data and instructions in
secondary storage

• Overall trend in secondary storage is toward:
– Direct access methods
– Higher capacity, increased portability
– Automated storage management
Principles of Information Systems, Tenth Edition

54
Summary (continued)
• Computer systems categories:
– Single user and multiple users

• CPU processing speed:
– Limited by physical constraints such as the distance
between circuitry points and circuitry materials

• Green computing:
– Concerned with the efficient and environmentally
responsible design, manufacture, operation, and
disposal of IT related products

Principles of Information Systems, Tenth Edition

55

Mais conteúdo relacionado

Mais procurados

What’s New in Oracle Database 19c - Part 1
What’s New in Oracle Database 19c - Part 1What’s New in Oracle Database 19c - Part 1
What’s New in Oracle Database 19c - Part 1Satishbabu Gunukula
 
Current trends in dbms
Current trends in dbmsCurrent trends in dbms
Current trends in dbmsDaisy Joy
 
IS740 Chapter 12
IS740 Chapter 12IS740 Chapter 12
IS740 Chapter 12iDocs
 
11. operating-systems-part-2
11. operating-systems-part-211. operating-systems-part-2
11. operating-systems-part-2Muhammad Ahad
 
11. operating-systems-part-1
11. operating-systems-part-111. operating-systems-part-1
11. operating-systems-part-1Muhammad Ahad
 
Less17 moving data
Less17 moving dataLess17 moving data
Less17 moving dataAmit Bhalla
 
IS740 Chapter 10
IS740 Chapter 10IS740 Chapter 10
IS740 Chapter 10iDocs
 
Banco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de Dados
Banco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de DadosBanco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de Dados
Banco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de DadosLeinylson Fontinele
 
Generations of computers.15
Generations of computers.15Generations of computers.15
Generations of computers.15myrajendra
 
Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)Rabin BK
 
IS740 Chapter 13
IS740 Chapter 13IS740 Chapter 13
IS740 Chapter 13iDocs
 
Homogeneous ddbms
Homogeneous ddbmsHomogeneous ddbms
Homogeneous ddbmsPooja Dixit
 
ER Modeling and Introduction to RDBMS
ER Modeling and Introduction to RDBMSER Modeling and Introduction to RDBMS
ER Modeling and Introduction to RDBMSRubal Sagwal
 
Big Challenges in Data Modeling: Supertyping and Subtyping
Big Challenges in Data Modeling: Supertyping and SubtypingBig Challenges in Data Modeling: Supertyping and Subtyping
Big Challenges in Data Modeling: Supertyping and SubtypingDATAVERSITY
 
Network Administrator Project PowerPoint
Network Administrator Project PowerPointNetwork Administrator Project PowerPoint
Network Administrator Project PowerPointSteven Washington
 
04. availability-concepts
04. availability-concepts04. availability-concepts
04. availability-conceptsMuhammad Ahad
 
Aula 1 - Introdução ao Conteúdo de Banco de Dados
Aula 1 - Introdução ao Conteúdo de Banco de DadosAula 1 - Introdução ao Conteúdo de Banco de Dados
Aula 1 - Introdução ao Conteúdo de Banco de DadosHenrique Nunweiler
 
7 relational database design algorithms and further dependencies
7 relational database design algorithms and further dependencies7 relational database design algorithms and further dependencies
7 relational database design algorithms and further dependenciesKumar
 

Mais procurados (20)

What’s New in Oracle Database 19c - Part 1
What’s New in Oracle Database 19c - Part 1What’s New in Oracle Database 19c - Part 1
What’s New in Oracle Database 19c - Part 1
 
Chapter 11 MIS
Chapter 11 MISChapter 11 MIS
Chapter 11 MIS
 
Current trends in dbms
Current trends in dbmsCurrent trends in dbms
Current trends in dbms
 
IS740 Chapter 12
IS740 Chapter 12IS740 Chapter 12
IS740 Chapter 12
 
11. operating-systems-part-2
11. operating-systems-part-211. operating-systems-part-2
11. operating-systems-part-2
 
11. operating-systems-part-1
11. operating-systems-part-111. operating-systems-part-1
11. operating-systems-part-1
 
Less17 moving data
Less17 moving dataLess17 moving data
Less17 moving data
 
IS740 Chapter 10
IS740 Chapter 10IS740 Chapter 10
IS740 Chapter 10
 
Banco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de Dados
Banco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de DadosBanco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de Dados
Banco de Dados I - Aula 03 - Conceitos de Sistemas de Banco de Dados
 
Generations of computers.15
Generations of computers.15Generations of computers.15
Generations of computers.15
 
Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)
 
IS740 Chapter 13
IS740 Chapter 13IS740 Chapter 13
IS740 Chapter 13
 
Homogeneous ddbms
Homogeneous ddbmsHomogeneous ddbms
Homogeneous ddbms
 
ER Modeling and Introduction to RDBMS
ER Modeling and Introduction to RDBMSER Modeling and Introduction to RDBMS
ER Modeling and Introduction to RDBMS
 
Big Challenges in Data Modeling: Supertyping and Subtyping
Big Challenges in Data Modeling: Supertyping and SubtypingBig Challenges in Data Modeling: Supertyping and Subtyping
Big Challenges in Data Modeling: Supertyping and Subtyping
 
Network Administrator Project PowerPoint
Network Administrator Project PowerPointNetwork Administrator Project PowerPoint
Network Administrator Project PowerPoint
 
04. availability-concepts
04. availability-concepts04. availability-concepts
04. availability-concepts
 
07. datacenters
07. datacenters07. datacenters
07. datacenters
 
Aula 1 - Introdução ao Conteúdo de Banco de Dados
Aula 1 - Introdução ao Conteúdo de Banco de DadosAula 1 - Introdução ao Conteúdo de Banco de Dados
Aula 1 - Introdução ao Conteúdo de Banco de Dados
 
7 relational database design algorithms and further dependencies
7 relational database design algorithms and further dependencies7 relational database design algorithms and further dependencies
7 relational database design algorithms and further dependencies
 

Destaque

IS740 Chapter 07
IS740 Chapter 07IS740 Chapter 07
IS740 Chapter 07iDocs
 
IS740 Chapter 06
IS740 Chapter 06IS740 Chapter 06
IS740 Chapter 06iDocs
 
IS740 Chapter 04
IS740 Chapter 04IS740 Chapter 04
IS740 Chapter 04iDocs
 
MIS Chapter 2
MIS Chapter 2MIS Chapter 2
MIS Chapter 2Dara Som
 
IS740 Chapter 11
IS740 Chapter 11IS740 Chapter 11
IS740 Chapter 11iDocs
 
IS740 Chapter 08
IS740 Chapter 08IS740 Chapter 08
IS740 Chapter 08iDocs
 
IS740 Chapter 14
IS740 Chapter 14IS740 Chapter 14
IS740 Chapter 14iDocs
 
IS740 Chapter 09
IS740 Chapter 09IS740 Chapter 09
IS740 Chapter 09iDocs
 
O Leary2008 Ce Complete Chapter8
O Leary2008 Ce Complete Chapter8O Leary2008 Ce Complete Chapter8
O Leary2008 Ce Complete Chapter8lonetree
 
Core Concepts in Information Systems
Core Concepts in Information SystemsCore Concepts in Information Systems
Core Concepts in Information Systemssaurdubey
 
File access methods.54
File access methods.54File access methods.54
File access methods.54myrajendra
 
power point WAN Presentation
power point WAN Presentationpower point WAN Presentation
power point WAN PresentationSamsul Z Arifin
 
Personal area network (pan)
Personal area network (pan)Personal area network (pan)
Personal area network (pan)Kukuh Rahmadi
 
Wireless WANs
Wireless WANsWireless WANs
Wireless WANsAram
 
WIDE AREA NETWORK
WIDE AREA NETWORKWIDE AREA NETWORK
WIDE AREA NETWORKNur Ana
 
Wide area network (wan)
Wide area network (wan)Wide area network (wan)
Wide area network (wan)Raaz Shrestha
 
1. introduction basics of investments.ppt
1. introduction   basics of investments.ppt1. introduction   basics of investments.ppt
1. introduction basics of investments.pptNavneet Jingar
 
File Organization
File OrganizationFile Organization
File OrganizationManyi Man
 

Destaque (20)

IS740 Chapter 07
IS740 Chapter 07IS740 Chapter 07
IS740 Chapter 07
 
IS740 Chapter 06
IS740 Chapter 06IS740 Chapter 06
IS740 Chapter 06
 
IS740 Chapter 04
IS740 Chapter 04IS740 Chapter 04
IS740 Chapter 04
 
MIS Chapter 2
MIS Chapter 2MIS Chapter 2
MIS Chapter 2
 
IS740 Chapter 11
IS740 Chapter 11IS740 Chapter 11
IS740 Chapter 11
 
IS740 Chapter 08
IS740 Chapter 08IS740 Chapter 08
IS740 Chapter 08
 
IS740 Chapter 14
IS740 Chapter 14IS740 Chapter 14
IS740 Chapter 14
 
IS740 Chapter 09
IS740 Chapter 09IS740 Chapter 09
IS740 Chapter 09
 
Marketing PPT (1)
Marketing PPT (1)Marketing PPT (1)
Marketing PPT (1)
 
O Leary2008 Ce Complete Chapter8
O Leary2008 Ce Complete Chapter8O Leary2008 Ce Complete Chapter8
O Leary2008 Ce Complete Chapter8
 
Core Concepts in Information Systems
Core Concepts in Information SystemsCore Concepts in Information Systems
Core Concepts in Information Systems
 
File access methods.54
File access methods.54File access methods.54
File access methods.54
 
power point WAN Presentation
power point WAN Presentationpower point WAN Presentation
power point WAN Presentation
 
Personal area network (pan)
Personal area network (pan)Personal area network (pan)
Personal area network (pan)
 
Wireless WANs
Wireless WANsWireless WANs
Wireless WANs
 
WIDE AREA NETWORK
WIDE AREA NETWORKWIDE AREA NETWORK
WIDE AREA NETWORK
 
Personal area networks (PAN)
Personal area networks (PAN)Personal area networks (PAN)
Personal area networks (PAN)
 
Wide area network (wan)
Wide area network (wan)Wide area network (wan)
Wide area network (wan)
 
1. introduction basics of investments.ppt
1. introduction   basics of investments.ppt1. introduction   basics of investments.ppt
1. introduction basics of investments.ppt
 
File Organization
File OrganizationFile Organization
File Organization
 

Semelhante a IS740 Chapter 03

Uc14 chap02
Uc14 chap02Uc14 chap02
Uc14 chap02ayahye
 
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...yaminohime
 
1-ComputerBasics.ppt
1-ComputerBasics.ppt1-ComputerBasics.ppt
1-ComputerBasics.pptJithaKannan1
 
Introduction to computer systems. Architecture of computer systems.
Introduction to computer systems. Architecture of computer systems.Introduction to computer systems. Architecture of computer systems.
Introduction to computer systems. Architecture of computer systems.TazhikDukenov
 
Chapter 02 system unit csc & tts
Chapter 02 system unit csc & ttsChapter 02 system unit csc & tts
Chapter 02 system unit csc & ttsHisyam Rosly
 
13 computer hardware
13 computer hardware13 computer hardware
13 computer hardwaresheeandeesuu
 
01 introduction to information technology
01 introduction to information technology01 introduction to information technology
01 introduction to information technologyDinesh Gunathilaka
 
Ca lecture 03
Ca lecture 03Ca lecture 03
Ca lecture 03Haris456
 

Semelhante a IS740 Chapter 03 (20)

IS_Ch03.ppt
IS_Ch03.pptIS_Ch03.ppt
IS_Ch03.ppt
 
Is ch03
Is ch03Is ch03
Is ch03
 
Computer Basics
Computer BasicsComputer Basics
Computer Basics
 
Uc13.chapter.02
Uc13.chapter.02Uc13.chapter.02
Uc13.chapter.02
 
Uc14 chap02
Uc14 chap02Uc14 chap02
Uc14 chap02
 
Uc14 chap02
Uc14 chap02Uc14 chap02
Uc14 chap02
 
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...
Understanding Computers: Today and Tomorrow, 13th Edition Chapter 2 - The Sys...
 
ITE 101 - Week 4
ITE 101 - Week 4ITE 101 - Week 4
ITE 101 - Week 4
 
1-ComputerBasics.ppt
1-ComputerBasics.ppt1-ComputerBasics.ppt
1-ComputerBasics.ppt
 
ch1.pptx
ch1.pptxch1.pptx
ch1.pptx
 
Introduction to computer systems. Architecture of computer systems.
Introduction to computer systems. Architecture of computer systems.Introduction to computer systems. Architecture of computer systems.
Introduction to computer systems. Architecture of computer systems.
 
1 hardware
1 hardware1 hardware
1 hardware
 
Chapter 02 system unit csc & tts
Chapter 02 system unit csc & ttsChapter 02 system unit csc & tts
Chapter 02 system unit csc & tts
 
13 computer hardware
13 computer hardware13 computer hardware
13 computer hardware
 
Ch 2
Ch 2Ch 2
Ch 2
 
01 introduction to information technology
01 introduction to information technology01 introduction to information technology
01 introduction to information technology
 
Lecture 02 hardwares
Lecture 02 hardwaresLecture 02 hardwares
Lecture 02 hardwares
 
3rd the cpu
3rd the cpu3rd the cpu
3rd the cpu
 
Ca lecture 03
Ca lecture 03Ca lecture 03
Ca lecture 03
 
Chapter Three
Chapter ThreeChapter Three
Chapter Three
 

Mais de iDocs

MGMT 340 - Chapter 03
MGMT 340 - Chapter 03MGMT 340 - Chapter 03
MGMT 340 - Chapter 03iDocs
 
MGMT 340 - Chapter 02
MGMT 340 - Chapter 02MGMT 340 - Chapter 02
MGMT 340 - Chapter 02iDocs
 
MGMT 340: Chapter 01
MGMT 340: Chapter 01MGMT 340: Chapter 01
MGMT 340: Chapter 01iDocs
 
ACCT321 Chapter 14
ACCT321 Chapter 14ACCT321 Chapter 14
ACCT321 Chapter 14iDocs
 
ACCT321 Chapter 10
ACCT321 Chapter 10ACCT321 Chapter 10
ACCT321 Chapter 10iDocs
 
ACCT321 Chapter 09
ACCT321 Chapter 09ACCT321 Chapter 09
ACCT321 Chapter 09iDocs
 
ACCT321 Chapter 08
ACCT321 Chapter 08ACCT321 Chapter 08
ACCT321 Chapter 08iDocs
 
ACCT321 Chapter 07
ACCT321 Chapter 07ACCT321 Chapter 07
ACCT321 Chapter 07iDocs
 
ACCT321 Chapter 06
ACCT321 Chapter 06ACCT321 Chapter 06
ACCT321 Chapter 06iDocs
 
ACCT321 Chapter 05
ACCT321 Chapter 05ACCT321 Chapter 05
ACCT321 Chapter 05iDocs
 
ACCT321 Chapter 04
ACCT321 Chapter 04ACCT321 Chapter 04
ACCT321 Chapter 04iDocs
 
ACCT321 Chapter 02
ACCT321 Chapter 02ACCT321 Chapter 02
ACCT321 Chapter 02iDocs
 
ACCT321 Chapter 01
ACCT321 Chapter 01ACCT321 Chapter 01
ACCT321 Chapter 01iDocs
 
ACCT 321 Chapter 11
ACCT 321 Chapter 11ACCT 321 Chapter 11
ACCT 321 Chapter 11iDocs
 
MBA 760 - Labor Force Composition
MBA 760 - Labor Force CompositionMBA 760 - Labor Force Composition
MBA 760 - Labor Force CompositioniDocs
 
IS740 Chapter 02
IS740 Chapter 02IS740 Chapter 02
IS740 Chapter 02iDocs
 
IS740 Chapter 01
IS740 Chapter 01IS740 Chapter 01
IS740 Chapter 01iDocs
 
MBA760 Chapter 11
MBA760 Chapter 11MBA760 Chapter 11
MBA760 Chapter 11iDocs
 
MBA760 Chapter 09
MBA760 Chapter 09MBA760 Chapter 09
MBA760 Chapter 09iDocs
 

Mais de iDocs (19)

MGMT 340 - Chapter 03
MGMT 340 - Chapter 03MGMT 340 - Chapter 03
MGMT 340 - Chapter 03
 
MGMT 340 - Chapter 02
MGMT 340 - Chapter 02MGMT 340 - Chapter 02
MGMT 340 - Chapter 02
 
MGMT 340: Chapter 01
MGMT 340: Chapter 01MGMT 340: Chapter 01
MGMT 340: Chapter 01
 
ACCT321 Chapter 14
ACCT321 Chapter 14ACCT321 Chapter 14
ACCT321 Chapter 14
 
ACCT321 Chapter 10
ACCT321 Chapter 10ACCT321 Chapter 10
ACCT321 Chapter 10
 
ACCT321 Chapter 09
ACCT321 Chapter 09ACCT321 Chapter 09
ACCT321 Chapter 09
 
ACCT321 Chapter 08
ACCT321 Chapter 08ACCT321 Chapter 08
ACCT321 Chapter 08
 
ACCT321 Chapter 07
ACCT321 Chapter 07ACCT321 Chapter 07
ACCT321 Chapter 07
 
ACCT321 Chapter 06
ACCT321 Chapter 06ACCT321 Chapter 06
ACCT321 Chapter 06
 
ACCT321 Chapter 05
ACCT321 Chapter 05ACCT321 Chapter 05
ACCT321 Chapter 05
 
ACCT321 Chapter 04
ACCT321 Chapter 04ACCT321 Chapter 04
ACCT321 Chapter 04
 
ACCT321 Chapter 02
ACCT321 Chapter 02ACCT321 Chapter 02
ACCT321 Chapter 02
 
ACCT321 Chapter 01
ACCT321 Chapter 01ACCT321 Chapter 01
ACCT321 Chapter 01
 
ACCT 321 Chapter 11
ACCT 321 Chapter 11ACCT 321 Chapter 11
ACCT 321 Chapter 11
 
MBA 760 - Labor Force Composition
MBA 760 - Labor Force CompositionMBA 760 - Labor Force Composition
MBA 760 - Labor Force Composition
 
IS740 Chapter 02
IS740 Chapter 02IS740 Chapter 02
IS740 Chapter 02
 
IS740 Chapter 01
IS740 Chapter 01IS740 Chapter 01
IS740 Chapter 01
 
MBA760 Chapter 11
MBA760 Chapter 11MBA760 Chapter 11
MBA760 Chapter 11
 
MBA760 Chapter 09
MBA760 Chapter 09MBA760 Chapter 09
MBA760 Chapter 09
 

Último

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 

Último (20)

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 

IS740 Chapter 03

  • 1. Principles of Information Systems, Tenth Edition Chapter 3 Hardware: Input, Processing, and Output Devices
  • 2. Principles and Learning Objectives • Computer hardware must be carefully selected to meet the evolving needs of the organization and of its supporting information systems – Describe the role of the central processing unit and main memory – State the advantages of multiprocessing and parallel computing systems, and provide examples of the types of problems they address Principles of Information Systems, Tenth Edition 2
  • 3. Principles and Learning Objectives (continued) – Describe the access methods, capacity, and portability of various secondary storage devices – Identify and discuss the speed, functionality, and importance of various input and output devices – Identify the characteristics of and discuss the usage of various classes of single-user and multiuser computer systems Principles of Information Systems, Tenth Edition 3
  • 4. Principles and Learning Objectives (continued) • The computer hardware industry is rapidly changing and highly competitive, creating an environment ripe for technological breakthroughs – Describe Moore’s Law and discuss its implications for future computer hardware developments – Give an example of recent innovations in computer CPU chips, memory devices, and input/output devices Principles of Information Systems, Tenth Edition 4
  • 5. Principles and Learning Objectives (continued) • The computer hardware industry and users are implementing green computing designs and products – Define the term green computing and identify the primary goals of this program – Identify several benefits of green computing initiatives that have been broadly adopted Principles of Information Systems, Tenth Edition 5
  • 6. Why Learn About Hardware? • Organizations invest in computer hardware to: – – – – – Improve worker productivity Increase revenue, reduce costs Provide better customer service Speed up time-to-market Enable collaboration among employees • Managers: – Are expected to help define the business needs that the hardware must support Principles of Information Systems, Tenth Edition 6
  • 7. Computer Systems: Integrating the Power of Technology • Hardware components: – Central processing unit (CPU): • Arithmetic/logic unit, the control unit, and the register areas – Arithmetic/logic unit (ALU): • Performs mathematical calculations and makes logical comparisons – Control unit : • Sequentially accesses program instructions, decodes them, and coordinates the flow of data in and out of the ALU, registers, primary storage, and even secondary storage and various output devices Principles of Information Systems, Tenth Edition 7
  • 8. Computer Systems: Integrating the Power of Technology (continued) – Registers: • High-speed storage areas • Used to temporarily hold small units of program instructions and data – Primary storage: • Also called main memory • Closely associated with the CPU Principles of Information Systems, Tenth Edition 8
  • 9. Computer Systems: Integrating the Power of Technology (continued) Principles of Information Systems, Tenth Edition 9
  • 10. Hardware Components in Action • • • • Step 1: Fetch instruction Step 2: Decode instruction Step 3: Execute instruction Step 4: Store results Principles of Information Systems, Tenth Edition 10
  • 11. Hardware Components in Action (continued) Principles of Information Systems, Tenth Edition 11
  • 12. Processing and Memory Devices: Power, Speed, and Capacity • System unit: – Houses the components responsible for processing (the CPU and memory) • All other computer system devices are: – Linked either directly or indirectly into the system unit housing Principles of Information Systems, Tenth Edition 12
  • 13. Processing Characteristics and Functions • Machine cycle time is measured in: – Nanoseconds (1 billionth of a second) – Picoseconds (1 trillionth of a second) – MIPS (millions of instructions per second) Principles of Information Systems, Tenth Edition 13
  • 14. Processing Characteristics and Functions (continued) • Clock speed: – Series of electronic pulses produced at a predetermined rate that affects machine cycle time – Often measured in: • Megahertz (MHz): millions of cycles per second • Gigahertz (GHz): billions of cycles per second • Microcode: – Predefined, elementary circuits and logical operations that the processor performs when it executes an instruction Principles of Information Systems, Tenth Edition 14
  • 15. Processing Characteristics and Functions (continued) • Physical characteristics of the CPU: – Most CPUs are: • Collections of digital circuits imprinted on silicon wafers, or chips, each no bigger than the tip of a pencil eraser – Moore’s Law: • Hypothesis stating that transistor densities on a single chip will double every two years Principles of Information Systems, Tenth Edition 15
  • 16. Memory Characteristics and Functions • Main memory – Provides the CPU with a working storage area for programs and data – Rapidly provides data and instructions to the CPU • Storage capacity – Eight bits together form a byte (B) Principles of Information Systems, Tenth Edition 16
  • 17. Memory Characteristics and Functions (continued) Principles of Information Systems, Tenth Edition 17
  • 18. Memory Characteristics and Functions (continued) • Types of memory: – Random access memory (RAM): • Temporary and volatile – Types of RAM: • • • • DRAM (Dynamic RAM) DDR2 SDRAM and DDR3 SDRAM Static Random Access Memory (SRAM) Double Data Rate Synchronous Dynamic Random Access Memory (DDR SDRAM) Principles of Information Systems, Tenth Edition 18
  • 19. Memory Characteristics and Functions (continued) • Types of memory (continued): – Read-only memory (ROM): • Nonvolatile • Provides permanent storage for data and instructions that do not change – Cache memory: • High-speed memory that a processor can access more rapidly than main memory Principles of Information Systems, Tenth Edition 19
  • 20. Memory Characteristics and Functions (continued) Principles of Information Systems, Tenth Edition 20
  • 21. Multiprocessing • Multiprocessing: – Simultaneous execution of two or more instructions at the same time • Coprocessor: – Speeds processing • Multicore microprocessor: – Combines two or more independent processors into a single computer Principles of Information Systems, Tenth Edition 21
  • 22. Multiprocessing (continued) • Graphics processing unit (GPU): – A specialized processor that offloads the tasks associated with 3D graphics rendering from the CPU – Can also be used in certain applications that require massive vector operations to provide performance several orders of magnitude higher than a traditional CPU Principles of Information Systems, Tenth Edition 22
  • 23. Parallel Computing • Parallel computing: – Simultaneous execution of the same task on multiple processors to obtain results faster • Massively parallel processing: – Links hundreds or thousands of processors to operate at the same time • Grid computing: – Use of a collection of computers to work in a coordinated manner to solve a common problem Principles of Information Systems, Tenth Edition 23
  • 24. Secondary Storage • Compared with memory, offers the advantages of nonvolatility, greater capacity, and greater economy • On a cost-per-megabyte basis: – Secondary storage is considerably less expensive than primary memory • Determined by the information system’s objectives: – The access methods, storage capacities, and portability required of secondary storage media Principles of Information Systems, Tenth Edition 24
  • 25. Access Methods • Sequential access: – Data must be retrieved in the order in which it is stored – Devices used called sequential access storage devices (SASDs) • Direct access: – Records can be retrieved in any order – Devices used are called direct access storage devices (DASDs) Principles of Information Systems, Tenth Edition 25
  • 26. Secondary Storage Devices • Magnetic tapes: – Primarily for storing backups of critical organizational data • Magnetic disks: – Direct-access storage device • Redundant array of independent/inexpensive disks (RAID): – Method of storing data that generates extra bits of data from existing data • Virtual tape: – Storage technology for less frequently needed data Principles of Information Systems, Tenth Edition 26
  • 27. Secondary Storage Devices (continued) • Optical secondary storage devices: – Use special lasers to read and write data – Compact disc read-only memory (CD-ROM): • Storage capacity is 740 MB – Digital video disc (DVD): • Looks like a CD but can store about 135 minutes of digital video • Data transfer rate is 1.352 MB per second Principles of Information Systems, Tenth Edition 27
  • 28. Secondary Storage Devices (continued) • Solid state secondary storage devices: – Store data in memory chips rather than magnetic or optical media – Have few moving parts, so they are less fragile than hard disk drives – Disadvantages of SSD • High cost per GB of data storage • Lower capacity compared to current hard drives Principles of Information Systems, Tenth Edition 28
  • 29. Enterprise Storage Options • Attached storage: – Methods include the tape, hard disks, and optical devices • Network-attached storage (NAS): – Hard disk storage that is set up with its own network address rather than being attached to a computer • Storage area network (SAN): – Special-purpose, high-speed network that provides direct connections among data-storage devices and computers Principles of Information Systems, Tenth Edition 29
  • 30. Enterprise Storage Options (continued) Principles of Information Systems, Tenth Edition 30
  • 31. Enterprise Storage Options (continued) • Storage as a service: – A data storage model where a data storage service provider rents space to people and organizations – Providers: • AT&T, Aviva, Amazon.com • EMC, Google, Microsoft, and ParaScale Principles of Information Systems, Tenth Edition 31
  • 32. Input and Output Devices: The Gateway to Computer Systems • Input and output devices: – Gateways to the computer system – Part of a computer’s user interface • Organizations: – Should keep their business goals in mind when selecting input and output devices Principles of Information Systems, Tenth Edition 32
  • 33. Characteristics and Functionality • Data can be human-readable or machine-readable • Data entry: – Converts human-readable data into machinereadable form • Data input: – Transfers machine-readable data into system • Source data automation – Capturing and editing data where the data is initially created and in a form that can be directly input to a computer Principles of Information Systems, Tenth Edition 33
  • 34. Input Devices • Devices used to input general types of data: – – – – – – – – Personal computer input devices Speech recognition technology Digital cameras Terminals Scanning devices Optical data readers Magnetic ink character recognition (MICR) devices Magnetic stripe card Principles of Information Systems, Tenth Edition 34
  • 35. Input Devices (continued) • Devices used to input general types of data (continued): – – – – – – – – Chip-and-PIN cards Point-of-sale devices Contactless cards Automated teller machine (ATM) devices Pen input devices Touch-sensitive screens Bar-code scanners Radio frequency identification Principles of Information Systems, Tenth Edition 35
  • 36. Input Devices (continued) Principles of Information Systems, Tenth Edition 36
  • 37. Output Devices • Display monitors: – Used to display the output from the computer • Plasma display: – Uses thousands of smart cells (pixels) consisting of electrodes and neon and xenon gases that are electrically turned into plasma to emit light • LCD displays: – Flat displays that use liquid crystals • Digital audio player: – Can store, organize, and play digital music files Principles of Information Systems, Tenth Edition 37
  • 38. Output Devices (continued) • Organic light-emitting diodes (OLEDs): – Uses a layer of organic material sandwiched between two conductors • Printers and plotters: – Two main types of printers are laser printers and inkjet printers – Plotters are a type of hard-copy output device used for general design work • E-books: – Digital media equivalent of a conventional printed book Principles of Information Systems, Tenth Edition 38
  • 39. Output Devices (continued) Principles of Information Systems, Tenth Edition 39
  • 40. Computer System Types • Special-purpose computers: – Used for limited applications by military and scientific research groups such as the CIA and NASA • General-purpose computers: – Used for a wide variety of applications Principles of Information Systems, Tenth Edition 40
  • 41. Computer System Types (continued) Principles of Information Systems, Tenth Edition 41
  • 42. Computer System Types (continued) Principles of Information Systems, Tenth Edition 42
  • 43. Portable Computers • Handheld computers: – Single-user computers that provide ease of portability because of their small size • Laptop computer: – Personal computer designed for use by mobile users • Notebook computer: – Lightweight computer that weighs less than 5 pounds Principles of Information Systems, Tenth Edition 43
  • 44. Portable Computers (continued) • Netbook computer: – The smallest, lightest, least expensive member of the laptop computer family • Tablet computers: – Portable, lightweight computers with no keyboard Principles of Information Systems, Tenth Edition 44
  • 45. Nonportable Single-User Computers • Thin client: – Low-cost, centrally managed computer with no extra drives • Desktop computers: – Single-user computer systems that are highly versatile Principles of Information Systems, Tenth Edition 45
  • 46. Nonportable Single-User Computers (continued) • Nettop computer: – Inexpensive desktop computer designed to be smaller, lighter, and consume much less power than a traditional desktop computer • Workstations: – More powerful than personal computers but still small enough to fit on a desktop Principles of Information Systems, Tenth Edition 46
  • 47. Multiple-User Computer Systems • Server: – Used by many users to perform a specific task, such as running network or Internet applications • Scalability: – The ability to increase the processing capability of a computer system so that it can handle more users, more data, or more transactions • Blade server: – Houses many computer motherboards Principles of Information Systems, Tenth Edition 47
  • 48. Multiple-User Computer Systems (continued) • Mainframe computer: – Large, powerful computer shared by dozens or even hundreds of concurrent users connected to the machine over a network • Supercomputers: – The most powerful computers with the fastest processing speed and highest performance Principles of Information Systems, Tenth Edition 48
  • 49. Multiple-User Computer Systems (continued) Principles of Information Systems, Tenth Edition 49
  • 50. Multiple-User Computer Systems (continued) Principles of Information Systems, Tenth Edition 50
  • 51. Green Computing • Concerned with the: – Efficient and environmentally responsible design, manufacture, operation, and disposal of IS-related products • Goals: – Reduce the use of hazardous material – Enable companies to lower their power-related costs – Enable the safe disposal or recycling of some 700,000 tons of computers each year Principles of Information Systems, Tenth Edition 51
  • 52. Green Computing (continued) Principles of Information Systems, Tenth Edition 52
  • 53. Summary • Computer hardware: – Should be selected to meet specific user and business requirements • Random access memory (RAM): – Temporary and volatile • ROM (read-only memory): – Nonvolatile – Contains permanent program instructions for execution by the CPU Principles of Information Systems, Tenth Edition 53
  • 54. Summary (continued) • Multicore microprocessor: – Combines two or more independent processors into a single computer so they can share the workload • Computer systems: – Can store larger amounts of data and instructions in secondary storage • Overall trend in secondary storage is toward: – Direct access methods – Higher capacity, increased portability – Automated storage management Principles of Information Systems, Tenth Edition 54
  • 55. Summary (continued) • Computer systems categories: – Single user and multiple users • CPU processing speed: – Limited by physical constraints such as the distance between circuitry points and circuitry materials • Green computing: – Concerned with the efficient and environmentally responsible design, manufacture, operation, and disposal of IT related products Principles of Information Systems, Tenth Edition 55