Main memory and mass storage

Slides:



Advertisements
Similar presentations
1 Chapter 2 The Digital World. 2 Digital Data Representation.
Advertisements

What Is A Computer System?
Main Memory Lecture 2 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Chapter 1 Data Storage. 2 Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns.
Computer SCIENCE Data Representation and Machine Concepts Section 1.3
CMSC 104, Version 9/01 1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The.
Bits and Data Storage. Basic Hardware Units of a Computer.
Storage.
Aug CMSC 104, LECT-021 Machine Architecture and Number Systems Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY.
1 Part I: Machine Architecture 4 A major process in the development of a science is the construction of theories that are confirmed or rejected by experimentation.
CSCE 106 Fundamentals of Computer Science Assisting Slides The American University in Cairo Computer Science and Engineering Department.
 Memory Memory  Types of Memory Types of Memory  Memory Representation Memory Representation  Random Access Memory Random Access Memory  Read Only.
1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting.
Storage tradeoffs Storage media cost, speed, and capacity tradeoffs.
Pengantar Teknologi Informasi dan Ilmu Komputer Information Technology and Data Representation PTIIK- UB.
Computer Hardware Information Technology Week 5 and 6
Machine Architecture CMSC 104, Section 4 Richard Chang 1.
OBJECTIVES  Explain why a computer represents data in the form of binary  Explain the terms related to data storage: bit, byte, character, word  Calculate.
Chapter 1: Data Storage.
Overview of Physical Storage Media
Chapter 1 Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
Bits and Bytes IGCSE. A binary number is either a 0 or a 1 and is known as a 'bit' or b inary dig it. However, the CPU cannot deal with just one bit at.
COMPUTER ARCHITECTURE. Recommended Text 1Computer Organization and Architecture by William Stallings 2Structured Computer Organisation Andrew S. Tanenbaum.
 Bits & Bytes Bits & Bytes  Units of data Units of data  Storage devices Storage devices  Storage Types Storage Types  Secondary Storage Secondary.
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
Chapter 1 Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
Copyright © 2015 Pearson Education, Inc. Chapter 1: Data Storage.
CSCI-100 Introduction to Computing Hardware Part I.
Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
Allow computers to store programs and information for use at a later date Storage Devices.
Machine Architecture and Number Systems
Computers - The Journey Inside continues…
Storage of Data Instructions and data are held in main memory which is divided into millions of addressable storage.
By : Reem Hasayen. A storage device is a hardware device capable of storing information. There are two types of storage devices used in computers 1. Primary.
Computer Systems. Bits Computers represent information as patterns of bits A bit (binary digit) is either 0 or 1 –binary  “two states” true and false,
Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
Chapter 1 Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
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.
Introduction to Programming. Key terms  CPU  I/O Devices  Main memory  Secondary memory  Operating system  User interface  Application  GUI 
~How PC Parts Work~ (30 MARKS). List 4 External components you can see on the PC in front of you and describe the basic function of each one. 1) DVD Drive.
Computer Graphics HARDWARE. Computers  Computers are automatic, electronic machines that –accept data & instructions from a user (INPUT) –store the data.
Chapter 1: Data Storage.
Computer Architecture and Number Systems
Computer Science: An Overview Eleventh Edition
Part B Computer Storage
INFS 211: Introduction to Information Technology
Storage Hardware This icon indicates the slide contains activities created in Flash. These activities are not editable. For more detailed instructions,
Introduction to Computers
BITS & BYTES.
Storage devices of Computer Submitted By Pravesh Kumar UPS Beetia
CSCI 161: Introduction to Programming
Business Computer Technology
COMPUTER MEMORY & DATA STORAGE
COMPUTER MEMORY & DATA STORAGE
Chapter 1 Data Storage.
How do computers work? Storage.
Mass storage (secondary storage)
Bits, Bytes, and Storage.
Digital Storage Digital Storage Ann Ware ~
Presenting information as bit patterns
2.C Memory GCSE Computing Langley Park School for Boys.
Machine Architecture and Number Systems
Storage.
Information Technology Department
Machine Architecture and Number Systems
Presentation transcript:

Main memory and mass storage

1 Bits and Their Storage Inside today’s computers information is encoded as patterns of 0s and 1s. These digits are called bits (short for binary digits). Although you may be inclined to associate bits with numeric values, they are really only symbols whose meaning depends on the application at hand. Sometimes patterns of bits are used to represent

1 Bits and Their Storage numeric values; sometimes they represent characters in an alphabet and punctuation marks; sometimes they represent images; and sometimes they represent sounds.

2 Main Memory Main Memory For the purpose of storing data, a computer contains a large collection of circuits (such as flip-flops), each capable of storing a single bit. This bit reservoir is known as the machine’s main memory.

2 Main Memory Memory Organization A computer’s main memory is organized in manageable units called cells, with a typical cell size being eight bits. (A string of eight bits is called a byte. Thus, a typical memory cell has a capacity of one byte.) Small computers used in such household devices as microwave ovens may have main memories consisting of only a few hundred cells, whereas large computers may have billions of cells in their main memories.

Primary storage (main memory) a manageable unit( cell) size is eight bits. 1KB=210B=1024B 1MB= 210KB= 1024KB 1GB= 210MB= 1024MB 1TB= 210GB= 1024GB BYTE 7 6 5 4 3 2 1 0 Bit

2 Main Memory To identify individual cells in a computer’s main memory, each cell is assigned a unique “name”, called its addresses. The system is analogous to the technique of identifying houses in a city by addresses. In the case of memory cells, however, the addresses used are entirely numeric. To be more precise, we envision(想象) all the cells being placed in a single row and numbered in this order starting with the value zero.

2 Main Memory Such an addressing system not only gives us a way of uniquely identifying each cell but also associates an order to the cells (Figure 1.8), giving us phrases such as “ the next cell ” or “the previous cell.”

Figure 1.8 Memory cells arranged by address

3 Mass Storage Due to the volatility and limited size of a computer’s main memory, most computers have additional memory devices called mass storage (or secondary storage) systems, including magnetic disks, CDs, DVDs, magnetic tapes, and flash drives. The advantages of mass storage systems over main memory include less volatility, large storage capacities, low cost, and in many cases, the ability to remove the storage medium from the machine for archival purposes.

3 Mass Storage A major disadvantages of mass storage systems is that they typically require mechanical motion and therefore require significantly more time to store and retrieve data than a machine’s main memory, where all activities are performed electronically. Figure 1.9 a disk storage system

Figure 1.9 A magnetic disk storage system

3 Mass Storage Summary bit and its storage main memory mass storage