计算机英语 value,计算机英语:数据和数系

Data and Number System

We all know and understand the decimal number system; this is the number system we use daily.

In the computer world, the binary number systems the system used. All data is stored and manipulated inside the computer in binary.That is, within the computer all data is reduced to 1's and 0's.This 1'sand 0's are stored in logic circuits called registers, or they are stored in memory. The size of a register or memory location varies according to the kind of computer used.

Today's microcomputers will store either 8 or 16binary digits in each location. Large computers may store as many as 125 binary digits in each location.

We normally enter data into the computer in some number system other than binary because entering data in binary is too time-consuming and too prone to error—too many 1's and 0's.Data is entered into the computer using the decimal, octal, or hexadecimal number systems.Octal and hexadecimal are used most often because they are more closely related to binary than is the decimal system. It Is Important to our understanding of these number system-that we know how they are related one to another.

翻译:

数据和数系

我们大家都知道并理解十进制数系,这是我们每天使用的数系。

在计算机世界中,所用的数系是二进制数系。所有的数据在计算机内部都是以二进制(形式)存储和处理的,就是说,在计算机内部所有数据都归结为1和0这些1和 0存储在称为寄存器的逻辑电路中,或者它们被存储在存储器中,寄存器或存储器单元的大小,按照所用的计算机的种类而变化。

今天的微型计算机在其每个存储单元中,将存储8位或16位二进制数字,大型计算机在其每个字存储单元中可以存储多达125个二进制数字。

我们通常是以某种数系往计算机中输入数据,而不用二进制系,因为以二进制数系输入数据费时间,并且容易出错一一1和0太多,数据在输入计算机时,是用进制、八进制或十六进制数系(进行的)。八进制及十六进制是最常用的,因为它们比十进制数系更接近于二进制数系。理解这些数系是很重要的,因为我们可了解它彼此之间是怎样联系的。

Binary Number System

In the binary number system, there are two dig-its:0 and I.The binary system is used for internal computer operations because only two signal levels are required, as opposed to decimal where ten signal levels would be necessary.Because a digit in the units position has a value of 0 or I,numbers greater than 1cause a carry to the next position, each position represents the base raised to a power. In base 10, the units position has a power of 100, the next position 10 l,and so on. Thus, a digit in any position other than the units position has a weight (value) depending on its positioning the number. A 4,for example, has a weight of 4 in the units position, 40 in the 10's position, 400 in the100's position and so on.

In binary, or base 2, the same reasoning applies. The units position has a power of 20, the next position21,and so on. As illustrated in Figure 1-5 a binary digit in any position other than the unit’s position has weight depending on its position in the number. A Has a weight of 1 in the units position, 2 in the 2'sposition, 4 in the 4's position and so on. Binary digits are called bits (a contraction of "binary digits").Therefore, the digit in the units position is called the east-Significant Bit (LSB) ,and so on until we reach the Most-Significant Bit (MSB).

200712916555778.gif

翻译:

二进制数

在二进制数系中有两个数字0和1。二进制用于计算机内部操作,因为它仅需要两种信号电开这与十进制不同,那里将需要1I信号电平。因为在个位上的数字具有0和I的值,所以比I大的数将对下一位产生进位,每个位置代表基的若干次幂。在基为10中,个位具有10“次幂,下一位为10,次幂,等等。这样,在任意位置上(除了个位之外)的数字所具有的权(值)取决于此数字在该数中的位置。例如,4在个位上具有权为4,在十位上具有权40,在百位上具有权400,等等。

在二进制中(其基为2)应用同样的类推,个位具有权为2。,下一位具有权为2,等等。如图1-5所示,在任意位置上(除了个位之外)的二进制数字所具有的权,取决于此数字在该数中的位置。1在个位上具有的 为1,在2的位置上权为2,在4的位置上权为4,等等。二进制数字称为比特C bit它由”binary digits”缩写而成)。因此,在个位上的数字被称作“最低有效位”(LSB)等等,一直到我们到达“最高有效位”(MSB)为止。

Computer Codes

Although the capacity of their storage locations can vary,every computer stores number, letters, and other characters in a coded form. Every character in storage is represented by a string of Os and Is-the only digits found in the binary numbering system. Let's see how it's possible to use just two digits to represent any character.

1 .BCD Code

With BCD, it's possible to convert each decimal number into its binary equivalent rather than convert the entire decimal value into a pure binary form. The BCD equivalent of each possible symbol is shown in Figure 1-6.Since 8 and 9 require 4 bits, all decimal digits are presented in BCD by 4 bits. You've just seen that 202 is equal to 11001010 in pure binary form, converting 202 into BCD, however, produces the following result:

202 in BCD=0010 0000 0010 or 001000000010

200712916556267.gif

Instead of using 4 bits with only 16 possible characters,computer designers commonly use 6, 7, 8bits to represent characters in alphanumeric versions of BCD. With 6 bits, it's possible to represent 64different characters(26).This is a sufficient number to: ode the decimal digits(10), capital letters(26),and other special characters and punctuation marks(28).Figure 1-7(b)shows you how a few of the 64 possible characters are represented in a standard 6-bit BCDcode

200712916557197.jpg

200712916557940.jpg

2 .ASCI Character Code

Since 64 possible bit combinations isn't sufficient to provide decimal numbers(10),lowercase letters(26), capital letters (26), and a large numbers of other characters (28),designers have extended the 6-bit BCD code to 7 and 8 bits.With 7 bits, it's possible to provide28 different arrangements(27);with 8 bits,256 variations are possible (28).In addition to the four numeric place positions, there are three zone bit positions in a 7-bit code, and four zone bit positions in an 8-bit code: The 7-bit American Standard Code for Information Interchange (ASCII) is widely used in data communications work and is by far the most popular code used to represent data internally in personal computers.The ASCII format and the coding used to represent selected characters are shown in Figure 1-8.

200712916558276.gif

200712916559469.gif

There are also two popular 8-bit codes in common use. One is the Extended Binary Coded Decimal Interchange Code (EBCDIC).This code is used in IBM mainframe models and in similar machines produced by other manufacturers. The other 8-bit code isASCII-8,an 8-bit version of ASCII that is frequently used in the larger machines produced by some vendors. Figure 1-9 presents the 8-bit format and show, selected characters are represented in these 8-bitcodes.The main difference is in the selection of bit patterns to use in the zone positions.

200712916559263.gif

200712916559771.gif

翻译:

计算机中的代码

尽管计算机存储单元的容量可变,但是每台计算机都是以代码形式存储数字、字母和其它字符的。存储器中的每个字符都用0、1(二进制编码系统中仅有的数字)数串表示。下面让我们看看如何只用两个数字表示任何字符。

1 .BCD码

用BCD码,可以将十进制数的每一位转换成相等的二进制数,而不是将整个十进制数转换成纯二进制数的形式。所有十进制数对应的BCD码如图1-6所示。因为8和9需要4位二进制数表示,所以,所有十进制数均用4位BCD码表示。众所周知,用纯二进制数表示202等于

11001010,但是将202转换成BCD码,结果如下;

202(10)的BCD码=0010 0000 0010或001000000010

计算机设计者普遍采用6位7位或8位BCD字母数字型字符,代替只有16种可能字符的4位BI码。用6位二进制数,可以表示个不同字符(26) ,这就有足够的数对十进制数(10个)、大写字母(26个)及其它特殊字符和标点字符(28个)进行编码。其中一些字符对应的标准6位BCD码如图1-7(b)所示。

2. ASCI工字符代码

因为64种可能的位排列仍不能满足十进制数(10个)、小写字母(26个)、大写字母(26个)和大量的其它字符(26个以上)编码的需要,所以设计者将6位BCD码扩充到7位和8位。7位二进制数可以提供128种不I司的排列(2 ');8位二进制数可以有256种排列(2”)。除了4位数字位之外,在7位编码中有3个标志位,而在8位编码中则有4个标志位。7位美国信息交换标准代码(ASCII)广泛地用于数据通信,而且是个人计算机内部数据表示中最为流行的代码ASCII码的格式及所选字符的编码如图1-8所示。

还有两种普遍使用的流行的8位编码。一种是扩充的二一十进制交换码(EBCDIC)。该编码用于IBM大型计算机及其它厂家生产的类似机器中。另一种8位编码是ASCII-8,是ASCII代码8位格式,常常用于一些厂商生产的较大机器中。'8位编码的格式及如何表示所列字符如图1-9所示。这两种编码的主要区别在于标志位模式的选择。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值