欢迎来到优知文库! | 帮助中心 分享价值,成长自我!
优知文库
全部分类
  • 幼儿/小学教育>
  • 中学教育>
  • 高等教育>
  • 研究生考试>
  • 外语学习>
  • 资格/认证考试>
  • 论文>
  • IT计算机>
  • 法律/法学>
  • 建筑/环境>
  • 通信/电子>
  • 医学/心理学>
  • ImageVerifierCode 换一换
    首页 优知文库 > 资源分类 > PPT文档下载
    分享到微信 分享到微博 分享到QQ空间

    计算机导论复习.ppt

    • 资源ID:198140       资源大小:1.05MB        全文页数:37页
    • 资源格式: PPT        下载积分:7金币
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    三方登录下载: QQ登录
    二维码
    扫码关注公众号登录
    下载资源需要7金币
    邮箱/手机:
    温馨提示:
    快捷下载时,如果您不填写信息,系统将为您自动创建临时账号,适用于临时下载。
    如果您填写信息,用户名和密码都是您填写的【邮箱或者手机号】(系统自动生成),方便查询和重复下载。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP,免费下载
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    计算机导论复习.ppt

    计算机导论考前辅导学习方法应试方法 认真对待作业题,作业题就是考试题 老师上课讲的内容就是考试内容(不必死扣书本) 考试不交白卷,越不会越多写(相关公式、概念、自己的想法) 大学考试考的是记忆力,请珍惜自己的大脑 神通广大的打印店(复习资料、历年试卷)Chapter 1 IntroductionComputer Is a programmable data processor that accepts input data and programs and outputs data.Computer System Solve problems and interact with their environment. They consist of Devices, programs, and data.Program Is a set of instructions executed sequentially that tells the computer what to do with data.Chapter 1 IntroductionVon Neumann ModellFour Subsystems MemoryMemory(内存) Arithmetic Arithmetic Logic Logic UnitUnit(ALU ALU ,算术逻辑单元) Control Unit Control Unit(控制器) Input/Output Input/Output(输入/输出设备)lStored Program ConceptlSequential Execution Of InstructionsChapter 2 Data RepresentationData TypeslText BytelNumber ASCIIlImage Bitmap,Vector,Pixel,ResolutionlAudio Digital,AnaloglVideo FrameChapter 2 Data RepresentationTextlBit (位) A bit (binary digit) is the smallest unit of data that can be stored in a computer,it is either 0 or 1. lBit Pattern(位组合格式) A bit pattern is a sequence, or as it is sometimes called, a string of bits that can represent a symbol. lByte(字节) A bit pattern of length 8 is called a byte. Chapter 2 Data RepresentationNumberlASCII American Standard Code for Information Interchange (ASCII)(美国信息交换标准代码). This code uses 7 bits for each symbol. This means 128 different symbols can be defined by this code.Chapter 2 Data RepresentationImagelBitmap Graphic Pixel: Picture elementsResolution: The size of the pixelChapter 2 Data RepresentationImagelVector Graphic An image is decomposed into a combination of curves and lines. Each curve or line is represented by a mathematical formula.Chapter 3 Number RepresentationConcepts Decimal system (十进制十进制) based on 10,0-9; Binary system (二进制二进制) based on 2,0-1; Octal notation (八进制八进制) based on 8,0-7; Hexadecimal notation (十六进制十六进制) based on 16 ,0-9,A-F。Chapter 3 Number RepresentationConversionConversion Decimal Binary Hexadecimal notation Octal notationChapter 3 Number RepresentationInteger Representation Unsigned Integer(无符号整数)(无符号整数) Overflow(溢出)(溢出) Sign-and-Magnitude Format(原码)原码) +0 00000000 -0 10000000Range: 0 . (2N-1)Range: -(2N-1-1) +(2N-1-1)Chapter 3 Number RepresentationInteger Representation Ones Complement Format(反码反码) +0 00000000 -0 11111111 Twos Complement Format(补码)补码)Range: -2N-1 +(2N-1-1)Range: -(2N-1-1) +(2N-1-1)Chapter 3 Number RepresentationExcess System Magic Number Is normally (2N-1) or (2N-1-1), where N is the bit allocation. Example: Represent 25 in Excess_127 using an 8-bit allocation. -25 + 127 102 1100110 01100110Chapter 3 Number RepresentationFloating-Point Representation 1. Convert the integer part to binary. 2. Convert the fraction to binary. 3. Put a decimal point between the two parts.Example: Transform the fraction 0.875 to binary0.875 1.750 1.5 1.0 0.0 0 . 1 1 1Chapter 3 Number RepresentationNormalization Example: Show the representation of the normalized number + 26 x 1.01000111001 6 + 127 133 10000101 Sign exponent mantissa -+1010001.1101-111.000011+0.00000111001-001110011- 6 26 3 Normalized - +26 x 1.01000111001 -22 x 1.11000011 +2-6 x 1.11001 -2-3 x 1.110011Chapter 4 Operations on BitsArithmetic Operations Example1: Solution: Add two numbers in twos complement representation: (+24) + (-17) (+7)Carry 1 1 1 1 10 0 0 1 1 0 0 0 1 1 1 0 1 1 1 1-Result 0 0 0 0 0 1 1 1 +7Chapter 4 Operations on BitsArithmetic Operations Example2: Solution:Add two numbers in twos complement representation: (+127) + (+3) (+130)Carry 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 -Result 1 0 0 0 0 0 1 0 -126(Error)An overflow has occurred. Chapter 4 Operations on BitsArithmetic Operations Example3: Solution: Subtract 62 from 101 in twos complement: (+101) - (+62) (+101) + (-62)Carry 1 10 1 1 0 0 1 0 1 1 1 0 0 0 0 1 0-Result 0 0 1 0 0 1 1 1 39The leftmost carry is discarded.Chapter 4 Operations on BitsLogical OperationsChapter 4 Operations on BitsLogical OperationsExample1:Solution:Use the NOT operator on the bit pattern 10011000.Chapter 4 Operations on BitsLogical OperationsExample2:Solution:Use the AND operator on bit patterns 10011000 and 00110101.Chapter 4 Operations on BitsLogical OperationsExample3:Solution:Use the OR operator on bit patterns 10011000 and 00110101.Chapter 4 Operations on BitsLogical OperationsExample4:Solution:Use the XOR operator on bit patterns 10011000 and 00110101.Chapter 4 Operations on BitsLogical OperationsExample5:Solution:Use a mask to unset (clear) the 5 leftmost bits of a pattern. Test the mask with the pattern 10100110.ANDChapter 4 Operations on BitsShift Operations Shift operations can only be used when a pattern represents an unsigned number. 左移:左移: *2 右移:右移: / 2Chapter 5 Computer OrganizationMain Memory-Kilobyte(K)Megabyte(M)Gigabyte(G)Terabyte(T)Petabyte(P)Exabyte(E)-210 bytes220 bytes230 bytes240 bytes250 bytes260 bytes-103 bytes106 bytes109 bytes1012 bytes1015 bytes1018 bytesKB Kilobyte:千字节,1024字节MB Megabyte:兆字节GB Gigabyte:十亿字节TB Terabyte:1000吉千兆字节GB;兆兆位Chapter 5 Co

    注意事项

    本文(计算机导论复习.ppt)为本站会员(王**)主动上传,优知文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知优知文库(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2023 yzwku网站版权所有

    经营许可证编号:宁ICP备2022001189号-2

    本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。优知文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知优知文库网,我们立即给予删除!

    收起
    展开