版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Chapter 1,Data Storage, 2007 Pearson Addison-Wesley. All rights reserved, 2007 Pearson Addison-Wesley. All rights reserved,0-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 1.5 The Binary System 1.6 Storing Integers,
2、2007 Pearson Addison-Wesley. All rights reserved,0-3,Chapter 1: Data Storage (continued),1.7 Storing Fractions 1.8 Data Compression 1.9 Communications Errors, 2007 Pearson Addison-Wesley. All rights reserved,0-4,Bits and Bit Patterns,Bit: Binary Digit (0 or 1) Bit Patterns are used to represent info
3、rmation. Numbers Text characters Images Sound And others, 2007 Pearson Addison-Wesley. All rights reserved,0-5,Boolean Operations,Boolean Operation: An operation that manipulates one or more true/false values Specific operations AND OR XOR (exclusive or) NOT, 2007 Pearson Addison-Wesley. All rights
4、reserved,0-6,Figure 1.1 The Boolean operations AND, OR, and XOR (exclusive or), 2007 Pearson Addison-Wesley. All rights reserved,0-7,Gates,Gate: A device that computes a Boolean operation Often implemented as (small) electronic circuits Provide the building blocks from which computers are constructe
5、d, 2007 Pearson Addison-Wesley. All rights reserved,0-8,Figure 1.2 A pictorial representation of AND, OR, XOR, and NOT gates as well as their input and output values, 2007 Pearson Addison-Wesley. All rights reserved,0-9,Flip-flops,Flip-flop: A circuit built from gates that can store one bit. Has an
6、input line which sets its stored value to 1 Has an input line which sets its stored value to 0 While both input lines are 0, the most recently stored value is preserved, 2007 Pearson Addison-Wesley. All rights reserved,0-10,Figure 1.3 A simple flip-flop circuit, 2007 Pearson Addison-Wesley. All righ
7、ts reserved,0-11,Figure 1.4 Setting the output of a flip-flop to 1, 2007 Pearson Addison-Wesley. All rights reserved,0-12,Figure 1.4 Setting the output of a flip-flop to 1 (continued), 2007 Pearson Addison-Wesley. All rights reserved,0-13,Figure 1.4 Setting the output of a flip-flop to 1 (continued)
8、, 2007 Pearson Addison-Wesley. All rights reserved,0-14,Figure 1.5 Another way of constructing a flip-flop, 2007 Pearson Addison-Wesley. All rights reserved,0-15,Hexadecimal Notation,Hexadecimal notation: A shorthand notation for long bit patterns Divides a pattern into groups of four bits each Repr
9、esents each group by a single symbol Example: 10100011 becomes A3, 2007 Pearson Addison-Wesley. All rights reserved,0-16,Figure 1.6 The hexadecimal coding system, 2007 Pearson Addison-Wesley. All rights reserved,0-17,Main Memory Cells,Cell: A unit of main memory (typically 8 bits which is one byte)
10、Most significant bit: the bit at the left (high-order) end of the conceptual row of bits in a memory cell Least significant bit: the bit at the right (low-order) end of the conceptual row of bits in a memory cell, 2007 Pearson Addison-Wesley. All rights reserved,0-18,Figure 1.7 The organization of a
11、 byte-size memory cell, 2007 Pearson Addison-Wesley. All rights reserved,0-19,Main Memory Addresses,Address: A “name” that uniquely identifies one cell in the computers main memory The names are actually numbers. These numbers are assigned consecutively starting at zero. Numbering the cells in this
12、manner associates an order with the memory cells., 2007 Pearson Addison-Wesley. All rights reserved,0-20,Figure 1.8 Memory cells arranged by address, 2007 Pearson Addison-Wesley. All rights reserved,0-21,Memory Terminology,Random Access Memory (RAM): Memory in which individual cells can be easily ac
13、cessed in any order Dynamic Memory (DRAM): RAM composed of volatile memory, 2007 Pearson Addison-Wesley. All rights reserved,0-22,Measuring Memory Capacity,Kilobyte: 210 bytes = 1024 bytes Example: 3 KB = 3 1024 bytes Sometimes “kibi” rather than “kilo” Megabyte: 220 bytes = 1,048,576 bytes Example:
14、 3 MB = 3 1,048,576 bytes Sometimes “megi” rather than “mega” Gigabyte: 230 bytes = 1,073,741,824 bytes Example: 3 GB = 3 1,073,741,824 bytes Sometimes “gigi” rather than “giga”, 2007 Pearson Addison-Wesley. All rights reserved,0-23,Mass Storage,On-line versus off-line Typically larger than main mem
15、ory Typically less volatile than main memory Typically slower than main memory, 2007 Pearson Addison-Wesley. All rights reserved,0-24,Mass Storage Systems,Magnetic Systems Disk Tape Optical Systems CD DVD Flash Drives, 2007 Pearson Addison-Wesley. All rights reserved,0-25,Figure 1.9 A magnetic disk
16、storage system, 2007 Pearson Addison-Wesley. All rights reserved,0-26,Figure 1.10 Magnetic tape storage, 2007 Pearson Addison-Wesley. All rights reserved,0-27,Figure 1.11 CD storage, 2007 Pearson Addison-Wesley. All rights reserved,0-28,Files,File: A unit of data stored in mass storage system Fields
17、 and keyfields Physical record versus Logical record Buffer: A memory area used for the temporary storage of data (usually as a step in transferring the data), 2007 Pearson Addison-Wesley. All rights reserved,0-29,Figure 1.12 Logical records versus physical records on a disk, 2007 Pearson Addison-We
18、sley. All rights reserved,0-30,Representing Text,Each character (letter, punctuation, etc.) is assigned a unique bit pattern. ASCII: Uses patterns of 7-bits to represent most symbols used in written English text Unicode: Uses patterns of 16-bits to represent the major symbols used in languages world
19、 side ISO standard: Uses patterns of 32-bits to represent most symbols used in languages world wide, 2007 Pearson Addison-Wesley. All rights reserved,0-31,Figure 1.13 The message “Hello.” in ASCII, 2007 Pearson Addison-Wesley. All rights reserved,0-32,Representing Numeric Values,Binary notation: Use
20、s bits to represent a number in base two Limitations of computer representations of numeric values Overflow happens when a value is too big to be represented Truncation happens when a value is between two representable values, 2007 Pearson Addison-Wesley. All rights reserved,0-33,Representing Images
21、,Bit map techniques Pixel: short for “picture element” RGB Luminance and chrominance Vector techniques Scalable TrueType and PostScript, 2007 Pearson Addison-Wesley. All rights reserved,0-34,Representing Sound,Sampling techniques Used for high quality recordings Records actual audio MIDI Used in mus
22、ic synthesizers Records “musical score”, 2007 Pearson Addison-Wesley. All rights reserved,0-35,Figure 1.14 The sound wave represented by the sequence 0, 1.5, 2.0, 1.5, 2.0, 3.0, 4.0, 3.0, 0, 2007 Pearson Addison-Wesley. All rights reserved,0-36,The Binary System,The traditional decimal system is bas
23、ed on powers of ten. The Binary system is based on powers of two., 2007 Pearson Addison-Wesley. All rights reserved,0-37,Figure 1.15 The base ten and binary systems, 2007 Pearson Addison-Wesley. All rights reserved,0-38,Figure 1.16 Decoding the binary representation 100101, 2007 Pearson Addison-Wesl
24、ey. All rights reserved,0-39,Figure 1.17 An algorithm for finding the binary representation of a positive integer, 2007 Pearson Addison-Wesley. All rights reserved,0-40,Figure 1.18 Applying the algorithm in Figure 1.15 to obtain the binary representation of thirteen, 2007 Pearson Addison-Wesley. All
25、 rights reserved,0-41,Figure 1.19 The binary addition facts, 2007 Pearson Addison-Wesley. All rights reserved,0-42,Figure 1.20 Decoding the binary representation 101.101, 2007 Pearson Addison-Wesley. All rights reserved,0-43,Storing Integers,Twos complement notation: The most popular means of repres
26、enting integer values Excess notation: Another means of representing integer values Both can suffer from overflow errors., 2007 Pearson Addison-Wesley. All rights reserved,0-44,Figure 1.21 Twos complement notation systems, 2007 Pearson Addison-Wesley. All rights reserved,0-45,Figure 1.22 Coding the
27、value -6 in twos complement notation using four bits, 2007 Pearson Addison-Wesley. All rights reserved,0-46,Figure 1.23 Addition problems converted to twos complement notation, 2007 Pearson Addison-Wesley. All rights reserved,0-47,Figure 1.24 An excess eight conversion table, 2007 Pearson Addison-We
28、sley. All rights reserved,0-48,Figure 1.25 An excess notation system using bit patterns of length three, 2007 Pearson Addison-Wesley. All rights reserved,0-49,Storing Fractions,Floating-point Notation: Consists of a sign bit, a mantissa field, and an exponent field. Related topics include Normalized
29、 form Truncation errors, 2007 Pearson Addison-Wesley. All rights reserved,0-50,Figure 1.26 Floating-point notation components, 2007 Pearson Addison-Wesley. All rights reserved,0-51,Figure 1.27 Encoding the value 2 58, 2007 Pearson Addison-Wesley. All rights reserved,0-52,Data Compression,Lossy versus lossless Run-length encoding F
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 宜昌幼儿园考勤制度
- 2026年春季学期教学成果展示活动方案:展示教学成果分享成功经验发挥示范引领作用
- XX区实验初级中学2026年春季学期后勤校园绿化养护提升实施方案
- 河北石家庄市平山县2025-2026学年八年级上学期1月期末数学试题(无答案)
- 北京市朝阳区2026届高三上学期期末化学试题(无答案)
- 2025年西南大学东方实验中学秋季学期临聘教师、银龄骨干教师招聘备考题库及答案详解(夺冠系列)
- 小红书考勤制度
- 居家办公公司考勤制度
- 巢湖市考勤制度
- 工地管理人员考勤制度
- 药店法规法律培训教程
- 【骆驼祥子的人物形象及悲剧性浅析11000字(论文)】
- 人教鄂教版小学科学四年级下册全册教案
- 【S茶叶公司出口磋商英文函电1400字(论文)】
- 船舶动力装置安装工艺
- 2023年江西省德兴市投资控股集团限公司招聘12人(共500题含答案解析)高频考点题库参考模拟练习试卷
- 影视广告创意设计和制作PPT完整全套教学课件
- 吴冬冬:长方体和正方体的认识PPT
- 动物行为学绪论
- 高二年级化学寒假作业
- 《滕王阁序》-完整版课件
评论
0/150
提交评论