欢迎来到课桌文档! | 帮助中心 课桌文档-建筑工程资料库
课桌文档
全部分类
  • 党建之窗>
  • 感悟体会>
  • 百家争鸣>
  • 教育整顿>
  • 文笔提升>
  • 热门分类>
  • 计划总结>
  • 致辞演讲>
  • 在线阅读>
  • ImageVerifierCode 换一换
    首页 课桌文档 > 资源分类 > PPT文档下载  

    计算机导论复习.ppt

    • 资源ID:272807       资源大小:1.05MB        全文页数:37页
    • 资源格式: PPT        下载积分:10金币
    快捷下载 游客一键下载
    会员登录下载
    三方登录下载: 微信开放平台登录 QQ登录  
    下载资源需要10金币
    邮箱/手机:
    温馨提示:
    用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)
    支付方式: 支付宝    微信支付   
    验证码:   换一换

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

    计算机导论复习.ppt

    计算机导论考前辅导,学习方法,应试方法,认真对待作业题,作业题就是考试题 老师上课讲的内容就是考试内容(不必死扣书本)考试不交白卷,越不会越多写(相关公式、概念、自己的想法)大学考试考的是记忆力,请珍惜自己的大脑 神通广大的打印店(复习资料、历年试卷),Chapter 1 Introduction,Computer 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 Introduction,Von Neumann ModelFour Subsystems Memory(内存)Arithmetic Logic Unit(ALU,算术逻辑单元)Control Unit(控制器)Input/Output(输入/输出设备)Stored Program ConceptSequentialExecutionOf Instructions,Chapter 2 Data Representation,Data TypesText ByteNumber ASCIIImage Bitmap,Vector,Pixel,ResolutionAudio Digital,AnalogVideo Frame,Chapter 2 Data Representation,TextBit(位)A bit(binary digit)is the smallest unit of data that can be stored in a computer,it is either 0 or 1.Bit Pattern(位组合格式)A bit pattern is a sequence,or as it is sometimes called,a string of bits that can represent a symbol.Byte(字节)A bit pattern of length 8 is called a byte.,Chapter 2 Data Representation,NumberASCII 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 Representation,ImageBitmap Graphic Pixel:Picture elementsResolution:The size of the pixel,Chapter 2 Data Representation,ImageVector 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 Representation,Concepts 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 Representation,Conversion Decimal Binary Hexadecimal notation Octal notation,Chapter 3 Number Representation,Integer Representation Unsigned Integer(无符号整数)Overflow(溢出)Sign-and-Magnitude Format(原码)+0 00000000-0 10000000,Range:0.(2N-1),Range:-(2N-1-1)+(2N-1-1),Chapter 3 Number Representation,Integer 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 Representation,Excess 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 01100110,Chapter 3 Number Representation,Floating-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 binary,0.875 1.750 1.5 1.0 0.0 0.1 1 1,Chapter 3 Number Representation,Normalization Example:Show the representation of the normalized number+26 x 1.01000111001 6+127 133 10000101 0 10000101 01000111001000000000000 Sign exponent mantissa,Chapter 4 Operations on Bits,Arithmetic 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+7,Chapter 4 Operations on Bits,Arithmetic 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 Bits,Arithmetic 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 Bits,Logical Operations,Chapter 4 Operations on Bits,Logical OperationsExample1:Solution:,Use the NOT operator on the bit pattern 10011000.,Target 1 0 0 1 1 0 0 0 NOT-Result 0 1 1 0 0 1 1 1,Chapter 4 Operations on Bits,Logical OperationsExample2:Solution:,Use the AND operator on bit patterns 10011000 and 00110101.,Target 1 0 0 1 1 0 0 0 AND 0 0 1 1 0 1 0 1-Result 0 0 0 1 0 0 0 0,Chapter 4 Operations on Bits,Logical OperationsExample3:Solution:,Use the OR operator on bit patterns 10011000 and 00110101.,Target 1 0 0 1 1 0 0 0 OR 0 0 1 1 0 1 0 1-Result 1 0 1 1 1 1 0 1,Chapter 4 Operations on Bits,Logical OperationsExample4:Solution:,Use the XOR operator on bit patterns 10011000 and 00110101.,Target 1 0 0 1 1 0 0 0 XOR 0 0 1 1 0 1 0 1-Result 1 0 1 0 1 1 0 1,Chapter 4 Operations on Bits,Logical OperationsExample5:Solution:,Use a mask to unset(clear)the 5 leftmost bits of a pattern.Test the mask with the pattern 10100110.,The mask is 00000111.Target 1 0 1 0 0 1 1 0 ANDMask 0 0 0 0 0 1 1 1-Result 0 0 0 0 0 1 1 0,Chapter 4 Operations on Bits,Shift Operations Shift operations can only be used when a pattern represents an unsigned number.左移:*2 右移:/2,Chapter 5 Computer Organization,Main Memory,KB Kilobyte:千字节,1024字节MB Megabyte:兆字节GB Gigabyte:十亿字节TB Terabyte:1000吉千兆字节GB;兆兆位,Chapter 5 Computer Organization,Main MemoryExample:Solution:,A computer has 32 MB(megabytes)of memory.How many bits are needed to address any single byte in memory?,The memory address space is 32 MB,or 225(25 x 220).This means you needlog2 225 or 25 bits,to address each byte.,Sign-and-magnitude,ones complement and twos complement 32-bit IEEE format,可能的未来,学神个数:1 2 个成绩:1 120名之间特点:专业技能极强,精通各种编程语言 参加过ACM竞赛、机器人大赛、数学建模大赛等取得好成绩毕业去向:知名IT企业(谷歌中国、阿里巴巴等)年薪 30w 50w 保送国内名校,可能的未来,学霸个数:20个左右成绩:1 30名之间特点:学习成绩优异 外语水平好(托福、GRE)毕业去向:保送国内名校 出国留学(世界名校)个别选择直接就业,可能的未来,学子个数:80个左右成绩:20 100名之间特点:大学过的很Happy 毕业去向:考研 就业 8w 15w 出国(自主),可能的未来,学渣个数:5个左右成绩:80 120名之间特点:沉迷游戏,挂科严重毕业去向:大五 大六 就业(没有学位证,只有中小私企会要)青年湖底,可能的未来,?,结束语,谢谢!,

    注意事项

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

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




    备案号:宁ICP备20000045号-1

    经营许可证:宁B2-20210002

    宁公网安备 64010402000986号

    课桌文档
    收起
    展开