Processing Device and Storage Devices

Slides:



Advertisements
Similar presentations
Lesson 3: Working with Storage Systems
Advertisements

McGraw-Hill/Irwin ©2008 The McGraw-Hill Companies, All Rights Reserved Plug-in B3 HARDWARE & SOFTWARE.
1.
Principles of Information Systems Eighth Edition
The Central Processing Unit: What Goes on Inside the Computer.
CENTRAL PROCESSING UNIT
Computer Performance & Storage Devices Computer Technology.
Is This Enough Money?. Is This Enough Money? Hardware Components Figure 2.1: Computer System Components System unit Houses CPU and memory All other.
Principles of Information Systems Eighth Edition
The Central Processor and Memory
Assembling an effective, efficient computer system requires an understanding of its relationship to the information system and the organization. The computer.
Fundamentals of Information Systems, Second Edition 1 Hardware and Software Chapter 2.
MSIS 110: Introduction to Computers; Instructor: S. Mathiyalakan1 Hardware: Input, Processing, and Output Devices Chapter 3.
Principles of Information Systems, Tenth Edition
MIS 175 Spring Learning Objectives When you finish this chapter, you will: –Recognize major components of an electronic computer. –Understand how.
Storage Chapter 3.
3.1 Storage. Overview Compare the following storage devices in terms of storage capacity, cost, speed of data retrieval and suitability for specific purposes:
Chapter 4  Converts data into information  Control center  Set of electronic circuitry that executes stored program instructions  Two parts ◦ Control.
Chapter 3 – Computer Hardware Computer Components – Hardware (cont.) Lecture 3.
Computer Hardware. “ Copyright 2005 John Wiley & Sons Inc.” TG 12 Chapter Outline Introduction The Central Processing Unit Computer Memory Evolution of.
1 CHAPTER 2 COMPUTER HARDWARE. 2 The Significance of Hardware  Pace of hardware development is extremely fast. Keeping up requires a basic understanding.
SECONDARY STORAGE Secondary storage devices are used to save, to back up, and to transport files Over the past several years, data storage capacity has.
Chapter 4: Business Hardware Oz (5 th edition). Storage Media Data an programs must be stored on nonvolatile medium –Data is retained even when not powered.
Secondary Storage Chapter 7.
Hardware: Input, Processing, & Output Devices Chapter 3.
3 1 3 C H A P T E R Hardware: Input, Processing, and Output Devices.
Chapter 2: CPU &Data Storage. CPU Each computer has at least one CPU Each computer has at least one CPU CPU execute instructions to carry out tasks –
Principles of Information Systems Eighth Edition
Principles of Information Systems, Sixth Edition Hardware: Input, Processing, and Output Devices Chapter 3.
Principles of Information Systems Chapter 3 Hardware: Input, Processing, and Output Devices.
CHAPTER 7 Storage Katie Moody Storage Storage holds data, instructions, and information for future use. Every computer uses storage to hold software.
Objectives Overview Differentiate between storage and memory
Your Interactive Guide to the Digital World Discovering Computers 2012.
Value Hardware and Software Revision: page Chapter 2.
6.1 Copyright © 2005 Pearson Education Canada Inc. Management Information Systems, Second Canadian Edition Chapter 6: Hardware and Software HARDWARE AND.
Module 2: Information Technology Infrastructure Chapter 1: Hardware and Software.
Secondary Storage Chapter 8 Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved. 8-1.
Principles of Information Systems, Sixth Edition 1 Hardware: Input, Processing, and Output Devices Chapter 3.
GCSE Computing Memory Powerpoint Templates.
TheTeacher Computing Data Storage Computing. TheTeacher Computing Primary Storage One of the fundamental properties of a computer is that it can store.
Chapter 2 – Part 1 Hardware and Software. Why Learn About Hardware and Software? Fundamentals of Information Systems, Sixth Edition 2  Organizations.
8 SECONDARY STORAGE CHAPTER
Chapter 2 part 2. Computer Processing Speeds Milliseconds - thousands of a second Microseconds - millionths of a second Nanoseconds - billionths of a.
Secondary Storage Chapter 8 McGraw-HillCopyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved.
1 Information Systems, Ninth Edition Chapter 3 Hardware: Input, Processing, and Output Devices.
CSCI-100 Introduction to Computing Hardware Part I.
Principles of Information Systems, Sixth Edition Hardware: Input, Processing, and Output Devices Chapter 3.
Succeeding with Technology Chapter 2 Hardware Designed to Meet the Need The Digital Revolution Integrated Circuits and Processing Storage Input, Output,
Storage devices 1. Storage Storage device : stores data and programs permanently its retained after the power is turned off. The most common type of storage.
Memory The term memory is referred to computer’s main memory, or RAM (Random Access Memory). RAM is the location where data and programs are stored (temporarily),
1 Principles of Information Systems, Ninth Edition Chapter 3 Hardware: Input, Processing, and Output Devices.
1 Lesson 1 Computers and Computer Systems Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
Hardware refers to the tangible parts of computer systems and typically includes support for processing, storage, input, and output. Hardware Processing.
Computer Performance & Storage Devices Computer Technology #2.
Fundamentals of Information Systems, Sixth Edition
Information Systems, Ninth Edition
APPENDIX A Hardware and Software Basics
Principles and Learning Objectives
BUSINESS PLUG-IN B3 HARDWARE AND SOFTWARE BASICS
Introduction to Computers
Chapter Seven Types of Storage.
Introduction to Computers
Chapter 7.
Secondary Storage Devices
Introduction to Computers
Computer Performance & Storage Devices
Computer Performance & Storage Devices
Primary Storage 1. Registers Part of the CPU
Presentation transcript:

Processing Device and Storage Devices Hardware Part 2 Processing Device and Storage Devices

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

Processing Characteristics and Functions Computer execute an instruction during a machine cycle Completing the instruction and execution phase – make up one machine cycle Machine cycle time is measured in: Nanoseconds (1 billionth of a second) Picoseconds (1 trillionth of a second) MIPS (millions of instructions per second)

Physical Characteristics of the CPU (continued) Figure 1: Moore’s Law

Physical Characteristics of the CPU Collection of digital circuits on chips Electrical current flows through silicon – to turn the digital circuit on or off Gordon Moore – former Intel’s chairman hypothesised that progress in chip manufacturing: transistor density of chips will double every 18 months (Moore’s Law)

Memory Characteristics and Functions Main memory Located physically close to the CPU, but not on the CPU chip itself Rapidly provides data and instructions to the CPU

Table 1: Computer Storage Units Storage Capacity Table 1: Computer Storage Units

Figure 2: Basic Types of Memory Chips

Types of Memory (Cash Memory) Figure 3: Cache Memory

Multiprocessing Multiprocessing: simultaneous execution of two or more instructions at the same time Multiprocessing using coprocessors Coprocessor: speeds processing by executing specific types of instructions while the CPU works on another processing activity

Parallel Computing Parallel computing: simultaneous execution of the same task on multiple processors to obtain results faster Massively parallel processing: Speeds processing by linking hundreds or thousands of processors to operate at the same time, or in parallel Each processor has its own bus, memory, disks, copy of the operating system, and applications

Parallel Computing (continued) 2 different approaches to achieving parallel computing Single instruction/multiple data (SIMD) parallel processors Multiple instruction/multiple data (MIMD) parallel processors Grid computing: use of a collection of computers, often owned by multiple individuals or organizations, to work in a coordinated manner to solve a common problem Principles of Information Systems, Eighth Edition

Secondary Storage Permanent storage Compared with memory, offers the advantages of nonvolatility, greater capacity, and greater economy Selection of secondary storage : access methods, storage capacities, and portability required - determined by the information system’s objectives Example: credit card company Principles of Information Systems, Eighth Edition

Access Methods Two types of access methods Sequential access: records must be retrieved in order in which it’s stored Devices used are 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, Eighth Edition

Devices Magnetic tapes Magnetic disks Optical disks Digital video disk (DVD) Holographic Versatile Disc (HVD) Memory cards Flash memory RAID Virtual tape Principles of Information Systems, Eighth Edition

Magnetic Tapes Sequential secondary storage medium Primarily for storing backups Tapes similar to audio and videocassettes Portion of tapes are magnetized to represent bits Principles of Information Systems, Eighth Edition

Magnetic Disks Direct access storage medium e.g. diskette, hard disks Allows fast data retrieval Principles of Information Systems, Eighth Edition

Optical Disc Data is recorded by special lasers that physically burn pits in the disk. Data accessed – optical disc device (compact disk player) e.g. CD-ROM – 740MB, CD-RW Principles of Information Systems, Eighth Edition

DVD and HVD DVD (Digital Video Disc) Looks like a CD but more storage capacity ~ 135min of digital video. Software, video games, movies HVD (Holographic Versatile Disc) Advanced optical disk – ongoing research Hold 200GB of data Write data 10 times faster than DVD Principles of Information Systems, Eighth Edition

Memory cards Functions as a hard disk drive Portable, relatively easy to use Need to use memory card reader/writer Principles of Information Systems, Eighth Edition

Flash Memory A silicon computer chip Keeps its memory when the power is shut off “Flash” – the memory cell is erased or reprogrammed in a single action or flash e.g. – Migo – keychain device, comes with software that captures files and settings from e-mail, word processing, web browser, presentation programs. Principles of Information Systems, Eighth Edition

RAID and Virtual Tape Storage technologies RAID – Virtual Tape Redundant array of independent /inexpensive disks duplicate existing data on drives, provides exact copy, store on different physical disk drives Virtual Tape manages less frequently needed data Move data to less costly storage media Software – virtual tape server Vendor – IBM and Storage Technology Principles of Information Systems, Eighth Edition

Enterprise Storage Options Needs to store massive amount of data 3 forms: Attached storage tape, hard disks, optical devices Simple, cost effective - single users and small groups Not allowed share storage Network-attached storage (NAS) Storage devices attach to a network Users can share and access same information Principles of Information Systems, Eighth Edition

Enterprise Storage Options (continued) Storage area network (SAN) Special purpose, high speed network Provides direct connections between data-storage devices and computer Integrates different types of storage subsystems Figure 3.9: Storage Area Network (SAN) Principles of Information Systems, Eighth Edition