计算机组成原理BB平台测试题+答案_第1页
计算机组成原理BB平台测试题+答案_第2页
计算机组成原理BB平台测试题+答案_第3页
计算机组成原理BB平台测试题+答案_第4页
计算机组成原理BB平台测试题+答案_第5页
已阅读5页,还剩19页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

第一章问题 1The computer has experienced 4 generations, which are ( D).A. Transistors, SMI, Laser device, Optical mediumB. Vacuum Tubes, Transistors, SSI/MSI circuit, Laser deviceC. Vacuum Tubes, Digital tube, SSI/MSI circuit, Laser deviceD. Vacuum Tubes, Transistors, SSI/MSI circuit, LSI/VLSI circuit问题 2The components of CPU do not include ( B).A. Arithmetic unit B. memory C. register D. controller问题 3CPU can process information of external memory directly. BA.对 B.错问题 4?MFLOPS is a performance index for express the speed of processing the floating point number. A A.对 B.错问题 5Although computer science and technology have changed tremendously both in hardware and in software, the basic model for computers has remained essentially the same, which was presented by (B ).A. Einstein B. Von Neumann C. Edison D. Newton问题 6In 8-bits micro-computer system, multiplication and division are realized by (D ).CA. dedicated chips B. firmware C. software D. hardware问题 7Software is equivalent to hardware in logic function. AA.对 B.错问题 8Resources management of computer software and hardware is the duty of (D ).A. Operating System B. Language process program AC. Database Management System D. Application program问题 9The reason of binary representation for information in a computer is it can easily process the information. BA.对 B.错问题 10The basic feature of Von Neumann computer is (A ).A. access memory by address and execute instruction in sequenceB. access memory by contentC. Multiple Instruction Stream Single Data Stream (MISD)D. operate stack问题 11Data and instructions are stored in ( C) when the program is running. AA. memory B. disk C. datapath D. operating system问题 12The operating system is appeared in ( C).A. the 4th generation computers B. the 2nd generation computersC. the 3rd generation computers D. the 1st generation computers问题 13The so called “PC” belongs to ( C).A. Medium computers B. Mainframes C. Micro-computers D. Mini-computers问题 14Computer hardware consists of calculator, memory, controller and I/O devices.B AA.对 B.错问题 15(C ) is not belonged to system program.A. Database system B. Operating system C. Compiler program D. the above all问题 16The vast majority of computer systems used today are constructed on (B ) computer model.A. intelligent B. Von Neumann C. parallel D. real time processing问题 17The use of ( C ) signified the development of micro-computer.A. software B. disk C. Microprocessor D. OS问题 18The use of microprocessor signified the development of micro-computer.AA.对 B.错问题 19The reason why the binary system of representation is widely adopted in computer is (B ).A. computing speed fast B. convenience for information processingC. saving components D. the restriction of the nature of physical devices问题 20A full computer should consists of (D ).A. host and Peripheral B. calculator, memory and controllerC. host and program D. hardware and software system问题 21Host consists of CPU and I/O devices A.A.对 B.错问题 22In a computer based on the von Neumann model, instructions and data are all stored in memory, and CPU distinguish them according their address. BA.对 B.错问题 23System software is purchased, and applied software is edit by ourselves B .A.对 B.错问题 24Which of the following languages can be implemented directly and edited by Mnemonic(助记符): Assembly language; machine language; High-level language; Operating system primitives; Regular language BA. , B. , C. , D. ,问题 25In computer terminology, CPU consists of calculator and controller. AA.对 B.错选择题答案:1-5.DBBAB 6-10.CAABA 11-15.ACCAA 16-20.BCADD 21-25.BABBA第二章问题 1If X 2s complement = 0.1101010,then X sign-magnitude = ( D )A. 0.0010110 B. 1.0010110 C. 1.0010101 D. 0.1101010问题 2( B ) is used to represent address in computer.A. 1s complement B. unsigned number C. 2s complement D. sign magnitude问题 3Numbers X1, X2 are integer, and 【X 1】 2s compl = 10011011, 【X 2】 2s compl = 00011011, then their true value of decimal form are _-101_ and _27_。2.4+2.3+2.1+2.0=问题 4The sign-magnitude representation of 0 is unique. BA.对 B.错问题 5Plus two 2s complement numbers that adopt 1 sign bit, overflow must occur when ( CD).A. carry signal is generated from the sign bitB. XOR operation for carry signal generated from the sign bit and carry signal generated from the highest numerical bit is 0C. XOR operation for carry signal generated from the sign bit and carry signal generated from the highest numerical bit is 1D. XOR operation for carry signal generated from the sign bit and carry signal generated from the highest numerical bit is 1问题 6The range of representation for a 1s complement number system of 64 bits (including the sign bit) is (A).A. 0|N|2 63 1 B. 0|N|2 62 1 C. 0|N|2 64 1 D. 0|N| 2 63问题 7Fixed point number can be classified into pure decimal(纯小数 ) and pure integer(纯整数).A.对 B.错 A问题 8In fixed point calculator, whether adopted double sign bit or single sign bit, it must has ( ), which is often implemented by ( ). CA. Decoding circuit, NAND gate B. encoding circuit, NOR gateC. overflow detection circuit, XOR gate D. shift circuit, AND-OR gate问题 9Arithmetic shift 2s complement of a positive, sign bit remains unchanged, and the blank bit fills in 0. Arithmetic left shift 2s complement of a negative, sign bit remains unchanged, and the low bit fills _0_. Arithmetic right shift 2s complement of a negative, sign bit remains unchanged, and the high bit fills_1_, and truncat low bit.问题 10?Let the word length is 8, the fixed point integer with 2s complement representation of -1 is _11111111_.问题 11In fixed point operation, it will be overflow when the result exceeds the represent range of the computer. AA.对 B.错问题 12For a 8-bit 2s complement representation integer number, its minimal value is_-128_, its maximal value is_127_.问题 13A fixed point number is composed of sign bit and numerical part.A.对 B.错 B问题 14The range of representation for a 2s complement number system of 16 bits (including the sign bit) is ( A).A. -215 + (215 -1) B. - (215 1) + (215 1) C. -215 + 215 D. - (215 +1) + 215 问题 158-4-2-1 BCD code of a number is 0111 1000 1001, then its true value is_789_.问题 16The addition/subtraction algorithm for sign magnitude representation is rather simple. BA.对 B.错问题 17Which of the following numbers is odd parity 奇校验? A?A. 010110011 B. 001000111 C. 110100111 D. 110100111问题 18The number represented in the computer sometimes will be overflow, the fundamental reason is the limited computer word length. AA.对 B.错问题 19For fixed point binary calculator, subtraction is implemented through ( B).A. 2s complement binary subtractor B. 2s complement binary adderC. sign magnitude decimal adder D. sign magnitude binary subtractor问题 20In 2s complement addition/subtraction, using 2 sign bits for overflow detection, when the 2 sign bits S1S2 equals 10, it means that (C ).A. result is positive, with no overflow B. result is negative, with no overflowC. result is overflow D. result is underflow问题 21The 2s complement representation of -127 is 10000000. BA.对 B.错10111111 11000000 11000001问题 22The minimal number of the following numbers is ( B).A. (100101 ) 2 32+4+1=37 B. (0010 0010) BCD 22 C. (50) 8 40 D. (625) 16 问题 232s complement representation of 0 equals to 1s complement representation of -1. BA.对 B.错 111111110问题 24If X2s complement = 1.1101010,then X sign-magnitude = (B )A. 1.0010101 B. 1.0010110 C. 0.0010110 D. 0.1101010问题 25For sign magnitude representation, 1s complement representation, 2s complement representation,_原码_ and_反码_has 2 representations of 0.问题 26The use of 2s complement operation is adopted to simplify the design of computer. AA.对 B.错问题 27Fixed point calculator is used for ( A ).A. fixed point operation B. floating point operationC. fixed point operation and floating point operation D. decimal addition问题 28When -1Ey, shift_ My _; if ExEy, shift_ Mx _; if Ex=Ey, no shift.问题 3The mantissa 尾数 of floating point number uses 2s complement representation, the binary code of the mantissa before normalization is 1.10101. It needs _left_ normalization, and it should shift_1_bit.问题 4( A) representation is used in mantissa of floating point number.A. biased code or excess-2q code B. sign magnitudeC. 2s complement D. 1s complement问题 5In the representation of floating point numbers, ( A )is implicit(隐含)A.exponent B. the radix 基数 of the number system to represent the mantissa C. mantissa D. sign bit 符号位问题 6For a IEEE 754 standard Floating-Point number, its mantissa uses ( A ) representation.A. biased code or excess-2q code B. 1s complement 反码C. sign magnitude 原码 D. 2s complement 补码问题 7Which of the followings is correct: DA. Exponent unit can realize addition, subtraction, multiplication and division operations.B. Mantissa unit only realize multiplication and subtraction operations.C. Exponent unit only realize addition and subtraction for exponent.D. Floating point calculator can be implemented by exponent and mantissa units.问题 8The maximal positive number in IEEE754 standard for 32-bits format 版本 is (B)A. +(2 2-23)2 +255 B. +(2 2 -23)2 +127 C. +(1 2 -23)2 +127 D. 2+127 + 227问题 9Exponent 指数 unit in floating point calculator can realize operations of addition, subtraction and compare. BA.对 B.错问题 10Which is normalized Floating-Point number, if its mantissa is represented by 2s complement format? BA. 0.01110 B. 1.00010 C. 0.01010 D. 1.11000问题 11In IEEE 754 standard, a floating point number is composed of sign bit s, exponent e, and mantissa m. AA.对 B.错问题 12The sign bit 1 of a biased code number represents the number for_负数_, while 0 represents the number for_正数_.问题 13In IEEE754 standard floating point, mantissa is coded as_原码_, exponent is coded as_补码_.问题 14In IEEE 754 standard, the value of exponent is represented in excess-128 code. BA.对 B.错问题 15In a algorithm for normalized float-point number, a number is 251.10101, with 2s complement representation for mantissa. Then it ( ).A. needs left shift 2 bits of mantissa for normalized B. needs left shift 1 bit of mantissa for normalized.C. needs no normalized D.needs right normalized问题 16The exponent, E, of a floating point number usually uses biased code representation, which is more convenient for comparing size or exponent equalization.A.对 B.错问题 17The mantissa of a Floatin

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论