发新话题
打印

计算机输入输出系统

计算机输入输出系统

INPUT/OUTPUT SYSTEM  Processors need a source of input data and a destination for output data.Processors also require storage space for large volumes of intermediate data.Thus the I/O system provides these storage facilities by connecting the processor’ s memory to the I/O devices.[1] These devices vary widely in latency and bandwidth;[2] thus,a major function of the I/O system is to match their latencies and bandwidths to that of the memory system.I/O devices consist of such diverse items as keyboards,modems,and hard disks.Each of these devices has its own latency and bandwidth requirements that must be satisfied for a properly functioning system.% [  q7 Y$ _, E9 e- y0 n
  The major tasks of the I/O system are the following:
  r3 y2 c! H: Q (1)to establish the connection between the memory and the I/O devices;
/ E5 w( w7 ~+ S0 q' o% u (2)to synchronize and manage the control of the data transfer;
$ _# _; E+ }6 `5 Y (3)to provide buffering when the source and sink bandwidths and latencies differ;3 D+ c" n6 ]- M+ Q" i0 ?
 (4)to perform code conversions if required;
& L& f7 ]1 |/ |* N$ R% @ (5)to interrupt the processor when required;
- A% r9 v4 c4 F( A8 g7 w' j (6)to terminate the operation when it is completed.$ f! Z; o3 B9 q* N- R4 [
  These tasks are accomplished by hardware and software,in varying amounts of each.The more hardware-oriented,the higher the performance and the higher the hardware cost.The more software-oriented,the lower the performance and the lower the hardware cost.Control can be classified into two broad categories:grogrammed I/O and coprocessor I/O.& w! @$ l6 L2 K6 m% t
  Programmed I/O/ |7 }1 C5 `0 {: A8 G' |) x
  Programmed I/O,also known as direct I/O,is accomplished by a program executing on the processor itself to control the I/O operations and transfer the data.With programmed I/O,shown in Fig. 1-12,there are several architectural registers(minimally an input register and an output register)that are addressed by special move instructions.[3]
6 Z& O& s, A' @

  These move instructions move information from the accurnulator(or general-purpose register)to/from the I/O registers.The peripherals are connected directly to the bits of these registers. [4]+ [+ E7 V* A( H+ }
  输入输出(I/O)系统
5 r! L* m% J3 _& @6 D. O. B
   
, m' K2 ]& {+ D1 |& F  处理器需要有输入数据的源设备和用于数据输出的目的设备。它还要求有存储大量中间数据的存储空间,I/O系统就是通过把处理器的存储器与I/O设备连接起来的存储设施。这些设备在等待时间和带宽上是大不相同的;因此I/O系统的主要功能是使其在执行时间和带宽上与存储系统协调起来。I/O设备包括键盘、调制解调器和硬盘等多种设备。对每种设备自身的等待时间和带宽,必须满足系统正确*作的要求。: y9 G0 M- q, C( ], X
     I/O系统的主要任务是:. I4 f; _6 T& O1 |+ h8 V
     (1)建立存储器和I/O设备之间的连接;7 w2 p' C5 }6 {+ f& D8 y: e) ]  G
     (2)对数据传输的控制进行同步化与管理;6 f5 w* P( F( m! h% `. L* V, ^
     (3)当信源和信宿的带宽和等待时间不同时,提供缓存功能;6 J' a! U  n' ]& u9 [# d
  (4)需要时完成代码的转换;4 ^$ \+ d9 o4 |& |! L& G; B1 Q
     (5)需要时中断处理器的工作;  Y% i4 O7 ?' `  d# L% A2 X2 E' E
     (6)任务完成时终止*作。
& |; g% l: c0 l6 L/ O     这些任务都是通过硬件和软件完成的,不过对硬件或软件的依赖程度各不相同。越是依靠硬件,则性能越高,硬件成本越大;越是依靠软件,则性能越差,硬件费用越低。控制方法可以分为两大类:程序控制I/O和协处理器I/O。
( }- ?/ p8 s- ]2 }  |! a  程序控制I/O
! _# n) h, K. P. O+ ^  程序控制I/O,又称直接I/O,由在处理器上执行的程序去控制I/O*作和传送数据。如图1-12所示的程序控制I/O,有几个体系结构寄存器(至少1个输入寄存器和1个输出寄存器),它们由专用的传送指令寻址。- _  F$ [) v* \/ Y0 \+ v) m
    这些传送指令在累加器(或通用寄存器)和I/O寄存器之间传送信息,而外围设备直接与每个寄存器相连。
IT动力源欢迎您

TOP

Memory-Mapped I/O  Memory-Mapped I/O is another form of programmed I/O that maps the device connections to bits in memory address space,as shown in Fig. 1-13.[5]  An output command is a normal store instruction that stores a pattern of bits into a designated memory location.[6] An input command is a normal load instruction that reads a memory location., ^9 [' \+ m; B! _" c  y

  Memory-mapped I/O requires the full participation of the processor,as with programmed I/O. Thus there is a similar loss of efficiency that is due to executing the I/O control program.
+ _% D1 l6 ^5 X- ?  The Intel Pentium Pro supports memory-mapped I/O in addition to proizrammed I/O.Any of the processor’s instructions that reference memory can address memory-mapped I/O locations. An example of an allocation is shown in Fig. 1-14.- P. B: r& b  i$ S: K0 p% Z9 \( D

7 o0 M" _, L; S

  The move instruction can transfer data between any of the processor’s registers and the spaces in memory allocated for I/O.Other operations such as ADD,AND,OR,and test can also have one source argument in I/O space.The logical operations are useful for control of bits in the control and status registers of an I/O device that is mapped into one or more of the memory-address spaces.[7]
: g, ^6 ^2 F( K) l  Interrupt I/O7 Y5 {* e4 [. F# N( W
  Because of the low efficiency of pure programmed or memory-mapped I/O in high-performance system,so interrupt is produced.Early mainframe computers,such as the Univac 1103 and the IBM 701,were users of this technique.
# V/ B6 W+ u, A. QThe data connection between the I/O device and the processor memory is shown in Fig.1-15 as a memory-mapped system.The processor sends a command to the device,usually by means of a special programmed I/O register,to start its operation.After the request is made to the device,the processor returns to the main program.When the latency is satisfied and the device is ready to transfer,the device sends an interrupt signal to the processor and the processor services the interrupt and performs the data transfer.Various status reports are sent from the device to the processor by means of the programmed I/O paths.
+ j) H6 |' K. T. T) R. J
. a" i' L1 L- j4 h4 [

  Interrupt I/O can be used with both programmed and memory-mapped I/O;the Intel Pentium Pro implements both techniques.
9 w$ a5 o1 A$ j3 l% p7 `5 N  存储器映射I/O& s% N7 n1 O5 C' [
  存储器映射I/O是另一种程序控制I/O,它把I/O设备连接映射成存储器地址空间中的位组,如图1-13所示。输出命令是一条普通的存储指令,把位模式存入指定的存储单元中。输入命令是一条普通的从指定存储单元读取数据的指令。
4 x& V% H3 a0 i( O: H* v5 }     像程序控制I/O一样,存储器映射I/O也要求处理器全面参与。由于要执行I/O控制程序,故效率同样降低。3 V: N; U$ \% F! j% }
     Intel Pentium Pro在支持程序控制I/O的同时,也支持存储器映射I/O。任何访问内存的处理器指令都能访问存储器映射I/O地址。图1-14为地址分配的例子。传送指令可以在任何处理器、寄存器和为I/O分配的内存空间之间传送数据。其他*作如“加(ADD)”、“与(AND)”、“或(OR)”以及测试,也可以有一个I/O空间的源参量。逻辑*作常用于对I/O设备中的控件和状态寄存器的位进行控制,而每一设备都可以映射为1个或多个存储器地址空间。
+ g6 e6 m& c: l4 _* M   中断I/O/ j2 L8 O  a9 ]
  由于对高性能系统来说纯程序控制I/O或存储器映射I/O的效率都很低,所以又出现了中断方式。早期的大型计算机,如Univac 1103,IBM 701都采用中断技术。2 M5 j  I# T% d  D
     图1-15展示了I/O设备和处理器存储器之间的数据连接,这是一个存储器映射系统。处理器通常使用专用的程序控制I/O寄存器向设备发送一个启动设备*作的命令。在向设备发出请求之后,处理器返回到主程序上。当等待时间满足要求并且设备做好传送准备时,它向处理器发送一个中断信号,处理器进行中断服务并完成数据传送。借助程序控制I/O通道,从设备向处理器送出各种状态报告。
8 [$ R: I7 H/ ~6 S0 [5 _     中断I/O可以与程序控制I/O和存储器映射I/O一起使用;Inter Pentium Pro就采用了这两种技术。
IT动力源欢迎您

TOP

Coprocessor I/O  When the processor is being used to control I/O and move the data,there is a loss of processor efficiency.[8] Thus the idea naturally arises to use a second processor or coprocessor for I/O.The autonomous coprocessor first appeared in the IBM 709 in 1959,and it performed all the I/O tasks and freed the main processor for its tasks.Fig.1-16 shows a coprocessor connecting an I/O device to the system bus.Control and status information is passed between the processor and the coprocessor by means of paths similar to those of programmed I/O.The processor sends a command to the coprocessor that autonomously performs the 1/O operation.
  t9 r+ J! I$ C$ T% F4 m  The introduction of a coprocessor makes this configuration a multiprocessor.The problems of any multiprocessor must be addressed with coprocessor I/O.These problems include software synchronization,hardware synchronization,memory protection,and memory coherency.- }) p9 z$ y; \  N2 P, L/ Z3 U
  There are two general types of these coprocessors:programmed I/O channel and direct memory access(DMA).    / K; M7 D/ Q8 n1 E( c

. n0 A3 ~8 r% A


  p4 Q' h! J7 q1 i. S  I/O devices
* g# l$ W/ r" M' d  1)INTERACTIVE INPUT
: P2 }4 {5 s0 l2 L7 Q0 g2 ^$ u  The idea of interactive input is to capture information directly into computers and get responses from computers as the input occurs.This happens when you type on a seyboard and immediately see the results of your work on a screen.It is so called as“screen-dependent”.: R( W) }1 g& e$ V# ?% j* d9 I
  Keyboard entry may be too slow or awkward for some jobs,but the keyboard can be bypassed by using one of a number of other interactive devices.Most of today’ s microcomputers,for example,include a mouse or a trackball that lets you use natural arm or hand motions to move the cursor.7 A7 a' W/ Q2 s; i  g5 Q" n
  Some screens themselves accept interactive input:The touch screen looks like a normal computer screen,but it can detect the point at which you touch it.9 p  O2 Z  N; Y+ x0 T# Q
  Technical applications such as graphic arts,mapping,and engineering often require specialized input methods.Perhaps the most natural tools are the light pen and the graphics tablet or digitizer.
& F% s/ m9 K% b2 G( q  2)DIRECT INPUT5 z, D5 U! V* ]
  In an information system,the greatest majority of delays,errors,and problems occur during the input phase.To attack the problem,a number of methods have been developed to increase speed,accuracy,and reliability of input.Collectively,these techniques have been referred to as source data automation.Scanning,voice input,and sensor input are three types of direct input.
( l9 e6 c2 f: h# [4 O' QScanners,also called optical scanners,are devices that read printed material so that it can he put in computer- readable form without your having to retype,redraw,reprint,or re-photograph the material.( N) r7 V0 J% U" a; K+ Z
  3)SPEECH RECOGNITION2 w& P$ ]! u$ }
  Speech-recognition or voice-input devices accept spoken words through a microphone and change the sounds into computer-readable signals.
9 i+ W. ^; [' ]! Q) C, [& a0 N8 P  4)SENSOR INPUT
- t1 e1 A7 J8 Q/ |  Home computer users may link their systems to thermometers,light detectors,and motion detectors to help control energy use and deter vandalism.Input from these detectors is called sensor input.Sensor input is used widely with microcomputers in factories and in scientific and medical laboratories,too.
. |  u# v4 y) r! G9 ~) G, j; r  5)DISPLAY OUTPUTS5 w1 x5 D! C4 A4 S2 Q& R5 |
  The most common output device is the monitor,a cathode-ray tube(CRT)that is basically a television tube adapted to present text,data,or images generated by computers.High-quality color monitors receive three separate color signals(red,green,and blue)and thus are called RGB color monitors.The clarity or sharpness of the display is termed resolution.The resolution of a monitor indicates the number of image points,or pixels(picture elements),on its screen.0 ?& l$ u% c/ F
The flat-panel displays used on portable computers are less bulky and require less power than CRT monitors.A common electronic imaging technique used in flat-panel displays is liquid-crystal display(LCD).Two other flat-panel displays are the gas plasma display,which uses electric current to cause gases to glow,and the electro-luminescent display(ELD),which is similar to gas plasma but has layers of phosphor rather than gas.1 S" y1 s0 z- x0 U
  6)PRINTERS FOR DOCUMENT OUTPUTS
6 N$ ~' i4 _0 V+ d- n. r  Document outputs are produced on printers and plotters,devices that produce images or text on paper.These outputs are known as printouts or hard copy.
+ N  Z" ]1 B* p6 j+ l3 R% uPrinters and plotters are classified by several criteria,one of them is on impact and non-impact printing methods.! U1 M0 O- o* {+ b9 t/ A: o
  (1)IMPACT PRINTERS/ a+ S: I8 M9 [! a
  A common impact printer for microcomputers is,the dot-matrix printer,which works by striking pins in a print element against the ribbon and paper.The pins are formed into a matrix,and different combinations of pins in the matrix shape the character or image./ J( L$ B5 w; x% E6 `
  (2)NONIMPACT PRINTERS/ p/ H1 N" w8 q2 i6 c
  Nonimpact printers use heat,laser,or spraying techniques to print characters and images." s6 X0 J0 {* I2 \3 ?2 i
The two major nonimpact technologies in use today are ink-jet and laser.
) O( @& T4 `/ d* C   协处理器I/O- ?+ C1 g! a( p
   当处理器用于控制I/O和传送数据时,其效率下降。因而自然会想到用第二个处理器或协处理器去处理I/O。1959年在IBM 709机器上第一次使用自主协处理器,由该协处理器完成所有I/O任务,而让主处理器去完成它自己的任务。图1-l6显示了协处理器将I/O没备连接到系统总线的情况。通过类似于程序控制I/O那样的通道,在处理器和协处理器之间传送控制和状态信息。处理器向协处理器发送一个命令,由协处理器自主完成I/O*作。
% u' m" d9 K7 C# O7 t0 S& e# P  采用协处理器使这种配置成为多处理器结构。协处理器I/O也必然会有其他多处理器一样的问题。这些问题包括软件同步、硬件同步、存储器保护和存储器相关等。) a; Q7 x5 i8 {$ {# x
  协处理器有两大类型:程序控制I/O通道和直接存储器存取(DMA)。4 ]: a+ [7 A" U& S
   输入输出设备
: U% C2 s! [4 \0 n( z5 R   l)交互性输入- f' F6 \% Q$ C0 K! V5 @2 ?( ^
     交互性输入是指当向计算机输入时,获取直接输入计算机的信息,并从计算机得到响应。例如击键时,立即在屏幕上看到击键的结果。所以这又叫做依赖于屏幕型输入。
8 t2 }  O$ y( l' p8 k     对于某些任务,键盘输入太慢太笨,可以不用键盘,转而采用很多其他交互性输入设备。例如,目前大多数微型计算机都配有鼠标或跟踪球,让手臂或手的自然运动去移动光标了。: W2 I5 c. I! @% @# d' t2 T
     某些屏幕本身接收交互性输入:触摸屏虽然看上去像普通的计算机屏幕,但可以检测到你触摸的那一点。% C& c) J4 s4 _$ v, `
     诸如图形术、地图绘制和工程之类的技术应用通常需要一些专门的输入方法,使用光笔和图形输入板或数字化仪这几种工具也许是最自然不过的事。: L9 C# `& Y' K; A: O* o0 x
  2)直接输入
" i" g8 ~/ L$ f2 A
     在信息系统中,绝大多数延时、错误和问题发生在输入阶段。为解决这一问题,研究出了很多提高输入速度、精确度和可靠性的方法。这些方法可以通称为源数据自动化。扫描、语音输入和传感器输入是3种直接输入类型。
( x8 a1 i( j( Y0 |$ w' p     扫描仪,又称光学扫描仪,是一种用于读取印刷资料的设备,其能使这种资料以计算机可以识别的形式提交,而无须对这些信息再录入、重画、重印或重新照相。
2 l+ }6 i7 g% t: e  D, Z   3)语音识别
' H% ~1 q, R0 Q9 @4 Z
     语音识别(或话音)输入设备能通过传声器接收口述词语并将其转化为计算机可以识别的信号。
- P  o8 \3 `! X   4)传感器输入
& {" o8 R% T+ R# ?; s: `9 O
     家庭电脑用户可将他们的计算机系统与温度计、光探测器和运动探测器连接起来,以便控制能源的消耗和防止非法入侵。这些探测器输入的信息称为传感器输入,传感器输入也广泛用于工厂和科研、医疗部门的微型计算机上。2 X7 x0 f* ]4 f# Q, G
   5)显示输出$ q6 T6 Y6 D9 _- C2 y0 s1 j
     最常用的输出设备要算监视器了,它是与电视机显像管基本相同的阴极射线管(CRT),经改制以适应显示由计算机产生的文本、数据或图像。高性能彩色监视器接收3种不同颜色的信号(红、绿或蓝),因而称之为RGB彩色监视器。监视器的清晰度,其术语叫做分辨率。监视器的分辨率指明屏幕上的图像点或像素(图像元素)的数量。/ y& M6 V! S( `' y
     用于便携式计算机上的平面监视器比CRT监视器体积小,耗电少。用于平面监视器的一种常用电子显像技术是液晶显示(LCD)。另外两种平面监视器是气体等离子监视器和电致发光监视器(ELD),前者用电流使气体发出辉光,后者与气体等离子体相似,但激发的是若干磷光体层而不是气体。7 Z# F8 ~3 N" a
   6)文本打印机$ ^0 ]* D2 }# }2 C5 z( K
    文本是在打印机和绘图仪上输出的,这两种设备在纸上产生图像或文本。这种输出称为打印输出或硬复制。+ v/ H+ e' J5 O3 k5 Q4 v. [3 U# g
    打印机和绘图仪可按好几种方式分类,其中之一是按接触式或非接触式打印来分类。
; o. r- b' F! S3 L; O, E    (1)接触式打印机。
% u/ R$ y3 O5 Q& g; ^    微型计算机上常用的接触式打印机是点阵式打印机,其通过驱动装在打印头上的打印针对着色带和纸击打。多针构成一个阵列,阵列中针的不同组合形成了字符或图像。" k4 c/ K4 s/ o8 v- t; n; ?
    (2)非接触式打印机。
+ [+ {" s2 v6 z3 T9 ^! {6 k    非接触式打印机采用热、激光或喷墨技术来打印字符和图像。目前使用的非接触式打印技术主要有两种:喷墨和激光。
IT动力源欢迎您

TOP

NOTES
( A$ g$ J; s" O% d1 l- z0 d[1]此处Processor’ s memory为处理器所控制的内存。
) _! F% Z5 E  w[2]latency为等待时间,bandwidth是指I/O设备与存储器之间传送速率的范围。
8 x5 r7 C6 H4 C3 [[3]此处指move指令去访问这些寄存器,address为寻址。1 L' L# H- l7 |7 i
[4]I/O设备统称外围设备,bits是指寄存器的各个二进制位。4 l. @  c2 Q# w1 Y7 D
[5]此处connections是指I/O设备的地址。% z- u) G4 P  X3 c
[6]pattern of bits此处是指存储器中的二进制位模式,而memory location是指1/O设备的存储单元,因为是按存储器映像编址的,下同。
- e/ d4 e% w% p6 E) s$ O[7]that代表1/O device,由于一台设备控制部件可以有多种寄存器,故在存储器映像I/O中就有多个地址。2 n4 O5 m( W" V: t5 U2 P/ e
[8]此处是指处理器处理低速I/O时效率很低。1 Y  J7 n& {$ Q: b# W: B  ]
KEYWORDS/ C: }( p0 }- A* c
latency   等待时间9 A- Q9 R8 D6 g) @
bandwidth  “带宽”(外设与存储器的传送速率范围)6 m1 _6 N; n0 ~& {2 @
modem  调制解调器  Q) Y% T5 ^6 t5 \3 ?; z; ?
hard disk  硬(磁)盘
' l0 x5 O0 {* i* ?6 M2 E8 R& Zcode conversion   代码转换5 G# z% Z1 \8 Y$ |
programmed I/O   程序控制I/O
" e& T2 H9 h7 H3 tcoprocessor I/O   协处理器I/O9 s6 s8 p* E! ]$ r5 m, L$ _
memory-mapped I/O  存储器映射I/O
  @! ]+ @' n# [; c; T. q. minterrupt  中断3 V2 u. w: Z+ h# S! ^3 O4 u
path 通路,路径
2 e- |) }6 L4 _& g8 C( emultiprocessor  多处理器5 X6 j& q# t. W; S
synchronization   同步化
; X9 ~1 I3 z, G/ V  d2 f: qcoherency   相关,相干
8 v4 B1 X: ~# Zdirect memory access(DMA) 直接存储器存取
, ^8 {0 f8 d; b  f3 u% uchannel   信道,通道" c6 G5 o; D7 N+ k. |: d
input/output system 输入输出系统
5 {& V# A' Y& i; c: i! G* mbuffering 缓冲
3 w* E  K; b* e9 b# u6 qaccumulator 累加器
; b5 k  U4 d$ K$ F" n1 b2 e: Z" Zperipheral 外围,外围设备
: S) X+ p& f5 Y% T  V5 ?- Wpattern of bits 位模式
0 I; J* x2 x5 K& m& Lload 装入,加载
% a- s" b2 c. t" g" t! xEXERCISES" ]6 G$ d2 v- A4 K7 e  @
1.Fill in the blanks.
& A) m* D  V6 g(1)I/O control can be classified into two broad categories:______ .) [3 K" S  A1 Y2 g
(2)I/O system needs a buffer when ______of source and destination differ.) ?/ G3 h+ V3 q. U- w( B" Z
(3)The tasks of I/O system can be performed by ______.
& j5 R0 w' L7 n# @; T(4)Programmed I/O is also known as ______ .
* g$ x- }! V: p/ P(5)Memory-Mapped I/O maps the device connections to ______in memory address space.
' \1 M/ c# C8 ^: n. X; c(6)If there is only one processor in a computer system,the processor efficiency should be______.
" W" K  r6 D- x(7)Memory coherency is one of problems with using ______ .9 x3 X8 ~9 k! P; w0 F
(8)In Memory-Mapped I/O any instruction of referencing memory can address______.; Z8 a% e8 K# A/ ?* F
(9)When a device is ready to transfer data,it sends an ______to the processor.5 o. ~0 x4 T9 C3 x( M/ B- g. V
(10)A major function of the I/O system is to match their latencies and bandwidth to that of______.
7 O# x2 Q  I- Q0 g; T( B      a.hardware and software     b.lower
7 ~# ^0 r! n. b% Z7 ]6 _7 w      c.programmed I/O and coprocessor I/O  d.the memory system
, y: G3 U( v8 A/ w      e.memory-mapped I/O locations    f.bandwidths and latencies
* S- x! f  j& t. X5 m  O& q; b8 [      g.bits         h.interrupt signal6 J& L7 p9 ~, b6 p, L, F. J
      i.coprocessor I/O      j.direct I/O
& N/ c5 _! k: y" n2.Macth the following terms to the appropriate definition./ v9 g6 f8 B, k6 ]/ J! C- W
(1)______interactive inputs.0 O6 I: e% i) v) m
(2)______nonimpact printers.
  v& ~2 y1 |, n6 T" O(3)______source data automation.( T: \5 N' U9 O3 Y- L0 b# m
(4)______display outputs.4 y) `; Q% A$ L* e. z" h$ H
(5)______ sensor input.+ V2 A* X: m5 K+ k* u
(6)______impact printer.4 Z9 `0 J' }2 U5 b" u5 \8 g8 @
(7)______liquid-crystal display(LCD)., v/ q/ N$ k+ j. n- ?( n
(8)______digitizer.
: i; z6 N+ v' D9 X: i  N/ r(9)______speech-recognition devices.5 t6 r- _' M( J2 {8 ~8 H. ^- a
(10)_____optical scanner.; T. V: D8 }# {1 O1 h/ o
      a.CRT is basically a television tube adapted to present text,data,or images generated by computers.
9 U) k" J2 {% v7 D% ]/ C      b.A number of methods have been developed to increase speed,accuracy,and reliability of input.# ^. O$ I4 ^5 P1 f$ x$ j- Y
      c.Screen-dependent inputs.1 k  M+ W9 e( a1 \& T5 _
      d.A device reads printed material so that it can be put in computer-readable form.! l. q% V- x" P: g
      e.Dot-matrix printer.
6 e9 e" P1 V' r9 n* \& U3 M      f.A device accepts voice information through a microphone.
! P( j$ u3 R! x  E      g.Ink-jet printer and laser printer.$ x  v& z+ X# B+ j8 K
      h.Home computer links to thermometer,light detector and motion detector.
( \+ u$ P; K8 o      i.A tool of technical applications especially used for engineering.& y$ d- t+ k( ?' Z; l  H9 e
      j.A common electronic imaging technique used in flat-panel displays.0 x9 z6 k9 P, }) F! H& h  R" F5 R

2 W  y* S7 F$ J! d0 a  dkey: . w0 t  ]) F. m1 Z
1.(1)c(2)f(3)a (4)j(5)g(6)b(7)i (8)e(9)h(10)d6 z+ k; `. O  T2 f* E  n. q
2.(1)c(2)g(3)b (4)a(5)h(6)e(7)j (8)i(9)f(10)d
IT动力源欢迎您

TOP

发新话题