ChapterIntroductiontoComputingandEngineeringProblemSolving.ppt

ChapterIntroductiontoComputingandEngineeringProblemSolving.ppt

  1. 1、本文档共48页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
ChapterIntroductiontoComputingandEngineeringProblemSolving

Data Representation and Storage Digital computers store information as a sequence of bits (binary digits). The value or state of a bit at any given time can be 0 or 1 (off or on). Data is stored as a sequence of bytes. A byte is a sequence of 8 bits. Copyright ? 2012 Pearson Education, Inc. Memory Diagram Address Space = 8 Word Size = 16 Copyright ? 2012 Pearson Education, Inc. Address Sixteen Bit Word 000 0000101011011101 001 1010001011010100 010 1011010010100101 011 0101001101010101 010 0101000111001110 010 1100110000111010 110 0100011101001001 111 0101110001001000 Data Representation Right most bit is referred to as the least significant bit. Left most bit is referred to as the most significant bit. Value stored at address 000 is 00001010110111012 = 278110 But what does it represent? Copyright ? 2012 Pearson Education, Inc. Numbering Systems Base ten number system Ten decimal digits (0,1,2,3,4,5,6,7,8,9) Each digit multiplies a power of ten Example: Copyright ? 2012 Pearson Education, Inc. 24510 = 2*102 + 4*101 + 5*100 Numbering Systems Base two (binary) number system Two binary digits (0,1) Each digit multiplies a power of two Example: Copyright ? 2012 Pearson Education, Inc. 101102 = 1*24 + 0*23 + 1*22 + 1*21 + 0*20 = 1*16 + 0*8 + 1*4 + 1*2 + 0*1 = 16 + 0 + 4 + 2 + 0 = 2210 Numbering Systems Base eight number system Eight octal digits (0,1,2,3,4,5,6,7) Each digit multiplies a power of eight Example: Copyright ? 2012 Pearson Education, Inc. 2458 = 2*82 + 4*81 + 5*80 = 2*64 + 4*8 + 5*1 = 128 + 32 + 5 = 1658 Numbering Systems Base sixteen number system Sixteen hex digits (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F) Each digit multiplies a power of sixteen Example: Copyright ? 2012 Pearson Education, Inc. 2FB16 = 2*162 + F*161 + B*160 = 2*256 + F*16 + B*1 = 512 + 240 + 11 = 76310 Practice with Number Systems 1002 = ?8 37168 = ?2 1101001112 = ?10 3A1B16 = ?2 C

文档评论(0)

shenland + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档