大学计算机基础复习资料-双语教学英文版.doc
《大学计算机基础复习资料-双语教学英文版.doc》由会员分享,可在线阅读,更多相关《大学计算机基础复习资料-双语教学英文版.doc(18页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、计算机复习资料最终定稿版Ji suan ji fu xi zi liao zui zhong ding gao ban1.key words of Definition for computer: instructions,input,processes ,outputA computer is an electronic device which operates under the control of stored instructions accepts data input processes the data according to specified rules produce
2、s and stores output1、A computers power is derived from Speed Reliability Accuracy Storage Communications 2、Data: The symbols that represent people, events, things, and ideas. Consists of the raw, unprocessed facts, including text, numbers, images, and sounds.3、Information :Data becomes information w
3、hen it is presented in a format that people can understand and use .4information processing cycle:.input, process, output, and storage5Computing Technology (R)Evolution four generations Vacuum Tube (电子管)Age ,Transistor Age(晶体管) ,Integrated Circuit (集成电路)Age ,Large-scale Integration(大规模集成化) Age6.分类:S
4、upercomputers (巨型计算机) fastest, most powerful, most expensiveMainframe computers(大型机)provide great processing speeds and data storage.Minicomputers (小型机)Microcomputers(微机)即 personal computer or PCleast powerful, but the most widely used.7. Information can be represented in one of two waysAnalog data(
5、模拟) A continuous representation,analogous(相似) to the actual informationDigital data A discrete representation8. 1 Byte=8 bits,B, KB, MB, GB, TB):9. Binary(Base 2)Octal(8)Decimal(Base 10) Hexadecimal(16)0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F10.distinguish number system(1) Subscript(下标) (101)2
6、 (101) 8(2)Postfix(后缀)101B 101O 101D 101H11. Converting numberNon-Decimal to DecimalDecimal to Non-Decimalv 102 integer整数(1)短除法(2)从高位到低位逆用210思想v Fraction小数Non-Decimal to Non-Decimal 28 (10 111 011.110 1)2 = (273.64)882 (6754.32)8 = (110 111 101 100. 011)2162 (A7B8.C9)16=(1010 0111 1011 1000 .1100 10
7、01)?12. Binary Arithmetic 12original code (2n11) (2n11) Total number is2n1 n=8 -127 +127Pro:Simple & Direct Cons:Subtraction operation may fail (overflow)13Original code and Complement code, to do subtraction减法 in addition(补码的意义正在于把减法做成加法) For positive number:complement = original For negative numbe
8、r: Original: sign bit is 1, the rest is its absolute value Complement: reverse all digits except the sign, the plus 1 Complement of complement = original14complement code 2n1 (2n11) Total number is 2n n=8, the range is: -128 +12715Floating point notation to represent very large real numbers and very
9、 small real numbers (1)-1.6875=(-1.1011)2=(-0.1101121)2 (2)指数 尾数上数=0 0000001 1 11011000000000000000000 (用八位表示指数位,24位表示尾数位)?16In a 32 bits computer, if 8 bits for exponent part and 24 bits for mantissa part, the range of number is 1038 2-150 0 -1038 -2-15016Code of charactersASCII美国信息交换标准码 character
10、setStandard 7-bits, with 128 charactersExtended 8-bits, with 256 charactersUnicode 16-bits, a superset超集 of ASCI17.von Neumannthree main ideas about computer *Five basic components *Use binary information *Stored program18The principle of stored program A couple of abilities: store program and then
11、automatic execute program .(存储程序、自动执行程序)Computers use “memory” (primary memory主存) to store program which will be processedv 19Five basic components Control Unit Arithmetic/logic Unit (ALU) 运算器 Input devices Output devices Storage primary and secondary storage19CPUcan fetch each instruction in that p
12、rogram from memory one by onedecode the informationGet data if neededand then execute the information until all instructions arefinished.巧记有一个全控制,有两个互相传数据和信息,有一个只入,有一个只出20 ALU(运算器)(arithmetic operation logical operations)-(register) CPU Control Unit(directs and coordinates使协调 operations in computer.
13、)-register Random access memory (RAM) temporary or volatile storage Main memory Read-only memory (ROM) -BIOS Basic Input Output SystemMemory CMOS required every time the computer system is turned on Secondary Storage 外存 CPU不能直接访问注释1 CPU定义 Interprets(翻译) and carries out basic instructions that operat
14、e a computer 注释2 ROM cannot be changed 而CMOS can be changed to reflect changes in the computer system注释3 Memory used to store the most frequently accessed information stored in RAM cache, 21two registers in the control unit:The instruction register (IR) contains the instruction that is being execute
15、d.The program counter (PC) contains the address of the next instruction to be executed18#Two steps of a machine cycle: Instruction cycle and execution cycle22. CPU speed Clock rate Word size Cache Instruction set size(指令集大小) 23. Computers are electronic devices that accept instructions, process inpu
16、t, and produceinformation24.术语:Floppy disk 软盘 Optical disk/compact disk 光盘 Flash disk 闪存盘23System Unit (主机)v Motherboardv Processor CPU ALU Control Unitv Memory RAM, ROM, CMOS, Cache All data and instructions must be loaded into RAM before they can be executedv Bus data highway between devicesv Expa
17、nsion slots/cards (扩展槽/卡) to add extra devices video card, sound card, network cardv Port (端口) a plug for a cable that leads to a device usb ports, RJ-45, VGA port for monitor OS24. 系统软件操作系统实用软件 外壳,命令解释程序 内核注释1Utility software fundamental to computer installations, but not part of the OS.注释2 shell p
18、rovides an interface through which a human can interact with the computerkernel manages computer resources, such as memory and input/output device强调:System software定义 manage a computer system at a fundamental level25. Every operating system performs three basic functions:(different os also have othe
19、r specific functions )manages computer resources, such as 1. memory,2. CPU, and3. processesprovides an interface through which a human can interact with the computerallows an application program to interact with other system resources26. Managing Resources consists of:Memory managementProcess manage
20、mentCPU scheduling26.1. Memory management optimizes(优化) the use of RAM26.2-1 A process can be defined as a program in execution.26.2-2 A single user operating system allows only one user to run one program at a time.A multiuser operating system enables two or more users to run a program simultaneous
21、ly.A multitasking operating system allows a single user to work on two or more applications that reside in memory at the same time.A multiprocessing operating system can support two or more processors running programs at the same time.26.3 CPU SchedulingThe operating system determines which process
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 大学计算机 基础 复习资料 双语 教学 英文
限制150内