数据库单词

合集下载

校园网-vfp常用英文单词

校园网-vfp常用英文单词

Dbms 数据库管理系统Database 数据库One to one relationship 一对一联系One to meny relationship 一对多联系Meny to meny relationship 多对多联系Quit 退出Dir 目录Clear 清屏Store to 给内存变量赋值Dimension 创建数组Declare 创建数组List 显示内存变量Display 显示内存变量Clear memory 清除所有内存变量Release 清除指定内存变量Scatter 将表的当前记录复制到数组Gether from 将数组数据复制到表的当前记录.not. 逻辑非.and. 逻辑与.or. 逻辑或Abs 绝对值函数Sign 符号函数Sqrt 求平方根数Int 求整数函数返回整数部分Ceiling 求整数函数返回大于或等于指定表达式的最小整数Ploor 求整数函数反回小于或等于指定表达式的最大整数Round 四舍五入函数Mod 求余函数Len 求字符串长度函数Lower 大写转小写函数Upper 小写转大写函数Space 空格生成函数Trim 去掉尾部空格形成的字符串Ltrim 去掉前导空格形成的字符串Alltrim 去掉前导和尾部空格形成的字符串Left 取左端子串Right 取右端子串Substr 取中间子串Occurs 求子串出现次数At 求子串位置函数Atc 求子串位置函数(不区分大小写)Stuff 子串替换函数Chrtran 字符替换函数Like 字符串匹配函数Date 系统日期Time 系统时间Datetime 系统日期时间Year 返回年份Month 返回月份Day 返回天数Hour 返回小时部分Minute 返回分钟部分Sec 返回秒数部分Str 数值转换成字符串Val 字符串转换成数值Ctod 字符串转换成日期型Ctot 字符串转换成日期时间型Dtoc 日期或日期时间型数据的日期部分转换成字符串Ttoc 日期时间型转换成字符串Between 值域测试函数Isnull 空值(null值)测试函数Empty “空”值测试函数Varitype 数据类型测试函数Eof 表文件尾测试函数Top 首记录Bottom 尾记录Bof 表文件首测试函数Recno 记录号测试函数Recount 记录个数测试函数Iif 条件测试函数Deleted 记录删除测试函数Modify command 建立和修改程序文件Do 执行程序文件Cancel 中止程序执行Return 结束当前程序执行,返回到调用它的程序或命令窗口Input*to*/accept*to*/ wait 简单的输入输出命令If/endif 简单条件语句If/else/endif 一般形式条件语句Docase/case/otherwise/endcase 多分支语句Do while/enddo for/endfor scan/endscan 循环语句Loop 转回do while处重新判断条件Exit 执行循环体外的语句Procedure 过程头Endproc 过程尾Return 过程返回Set procedure to 打开指定的或关闭所有的过程文件Release procedure 关闭指定的过程文件Parameters/lparameters 接收参数命令Do/with 调用模块程序Set udfparms tovalue|reference 设置参数传递的方式(按值传递还是按引用传递)Public 建立全局变量Locat 建立局部变量Private 隐藏主程序中可能存在的变量,使其在子程序中暂时无效Create database 创建数据库Open database 打开数据库Set database to 指定当前数据库或都不是当前数据库Modify database 打开数据库设计器Deleted database 删除数据库Set safety on/off 是否覆盖原数据库或删除指定数据库Creat 建立数据表Use 打开表Modify structure 修改当前表结构Browse 浏览表Append(blank)增加记录Insert(before/blank)在表任意位置插入新记录Delete for删除记录Recall for恢复记录Pack 物理删除有删除标记的记录Zap 物理删除表中全部记录,不管有没有删除标记Edit和chenge 交互修改记录Replace with 直接修改记录List/display 显示记录Goto/go 直接定位Skip 按逻辑顺序定位Locate for 按条件定位Index on 建立索引Set order to 指定(使用)索引Seek 使用索引快速定位Delete tag 删除索引Add table 添加一个自由表到数据库中Remove table 将表从数据库中移出Select 指定工作区In 在一个工作区中使用另外一个工作区中的表Set relation to/into 建立表间的临时联系Set relation to 取消到所有表的临时联系Set relation off into 取消某个具体的临时联系Sort to 物理排序Select from 简单查询Select from where 条件查询Distinct 去掉查询结果中的重复值Select…where x in (select x…) 嵌套查询Between…and 在…和…之间Like 字符串匹配运算符Not(!=)否定运算符Order by 排序Count 计数Sum 求和Max 求最大值Min 求最小值Avg 求平均值Group by…having 分组查询Select *…where (not) exists (select *…) 判断子查询中是否有或没有结果返回Select …where x >=any(sume)或all (select x…) 大于等于子查询中任何一个或所有的xSelect …from 表名inner/left/right/full join 表名on(连接条件)where …超连接查询Union 集合的并运算,将两个select 语句的查询结果合并成一个运算结果Top (percent) … order by …只显示前几项记录Into array 将查询结果存放到数组中Into cursor 将查询结果存放到临时文件中Into table(dbf) 将查询结果存放到永久表中To file 将查询结果存放到文本文件中To printer 将查询结果输出到打印机Insert into …values…向指定表、指定字段中插入记录Insert into …from array|memvar 从指定的数组或内存变量中插入记录Update tablenemaset …where 更新数据Delete from tablename where 删除数据Creat table 建立表Primary key 主关键字(主索引)Check 定义域完整性Error 出错提示信息Default 定义默认值Foreign key和references 描述表之间联系Drop table 表的删除Alter table 修改表结构Add | alter 添加新字段或修改已有字段Drop column | rename column 删除字段或修改字段名Create view 视图名as 查询语句定义一个视图Drop view 删除一个视图Create query 打开查询设计器建立查询Do *.qpr 使用(执行)查询Create view 打开视图设计器建立查询Create connection 打开连接设计器Opject 对象Class 类Baseclass 基类Classlibrary 类库Parentclass 父类Createobject 对象生成函数Parent 当前对象的直接容器对象This 当前对象Thisform 当前表单Thisformset 当前表单集Init 对象生成时引发的事件Destroy 对象从内存释放时引发的事件Error 方法或事件代码出现运行错误时引发的事件Create form 打开表单设计器创建表单Modify form 修改已有的表单Do form 运行表单Load 对象建立之前引发Unload 表单对象释放时最后一个要引发的事件Gotfocus 对象获得焦点时引发Click 单击对象时引发Dbclick 双击对象时引发Rightclick 右击对象时引发Interactivechange 交互式改变一个控件的值时引发Show 显示表单Hide 隐藏表单Release 释放表单Refresh 重新绘制表单或控件,并刷新它的所有值Setfocus 让控件获得焦点,使其成为活动对象标签:Caption 标题alignment 对齐方式命令按钮:default 默认按钮cancel 按esc键可激活“取消”按钮Enabled 能否响应由用户引发的事件visible 是可见还是隐藏文本框:controlsource 数据源Value 初始值passwordchar 指定用作占位符的字符inputmask 如何输入和显示数据编辑框:hideselection 当失去焦点时,选定文本是否仍显示为选定状态readonly 能否编辑编辑框中的内容scrollbars 滚动条selstart 返回所选文本的起始点或插入点位置sellength 返回所选文本的字符数seltext 返回选定的文本复选框:caption controlsource value列表框:rowsourcetyperowsource 指定列表框中条目的数据源类型、数据源columncount 指定列数controlsource 指定数据源value 返回被选中的条目multiselect 能否进行多重选定list 存取数据条目的字符串数组listcount 指明数据条目的数目selected (i)某个条目是否处于选定状态组合框:命令组:buttoncount 按钮的数目buttons 存取各按钮的数组value 指定当前状态选项组:buttoncount 选项按钮数目buttons 存取各按钮的数组controlsource 数据源value 初始化或返回被选中的按钮表格:recordsourcetype recordsource 表格数据源的类型、表格数据源columncount 列数linkmaster 指定显示子表的父表名称childorder 指定子表所要用的索引relationalexpr 确定基于父表字段的关联表达式controlsource 指定列中显示的数据源currentcontrol 指定列中的一个控件caption 指定标头标题alignment 对齐方式页框:pagecount 页对象数量pages 存取页框对象数组tabs 是否显示页面标签栏tabstretch 标签标题全显还是半显activepage 指定活动页面Create class of as调用类设计器Modify class of 修改类定义Create classlib 创建类库Add class of to 复制类Remove class of 删除类Rename class of to 重命名类Set classlib to 打开或关闭类库文件Release classlib 关闭当前处于打开的指定类库文件Set sysmenu on 允许程序执行时访问系统菜单Set sysmenu off 禁止程序执行时访问系统菜单Set sysmenu automatic 使系统菜单显示,可以访问系统菜单Set sysmenu to (弹出式菜单名表) 重新配置系统菜单Set sysmenu to default 使系统菜单恢复为缺省配置Set sysmenu save 将当前的系统菜单指定为缺省配置Set sysmenu nosave 将缺省配置恢复成系统菜单标准配置Modify menu 调用菜单设计器Do *.mpr 运行菜单程序Do (文件名) with this(,”菜单名”) 在表单init事件代码中添加调用菜单程序的命令Release menu (菜单名) extended 在表单的destroy 事件代码中添加清除菜单的命令Release popups 快捷菜单名extended 在快捷菜单的“清理“代码中添加清除菜单的命令Do *.mpr with this 在选定对象的rightclick事件代码中添加调用快捷菜单的命令Create report 打开报表设计器创建报表Modify report 打开报表Report form 报表文件名preview 打印或预览指定的报表Build app或build exe 连编应用程序Read events 控件事件循环的方法Clear events 结束当前事件循环的方法。

计算机必须掌握的英语单词

计算机必须掌握的英语单词

1.file n. 文件;v. 保存文件 2. command n. 命令指令 3. use v. 使用用途4. program n. 程序 5. line n. (数据程序)行线路 6. if conj. 如果7. display vt. 显示显示器8. set v. 设置n. 集合9. key n. 键关键字关键码10. list n. 列表显示v. 打印11. by prep. 凭靠沿12. press v. 按压13. with prep. 用与随着14. format n. 格式15. change v. 更换改变变动16. cursor n. 光标17. directory n. 目录索引簿18. from prep. 从来自以来19. menu n. 菜单目录20. option n. 任选选择可选项21. character n. 字符符号特性22. current n. 电流23. type n. 型类型;v. 打印24. screen n. 屏幕屏;v. 屏蔽25. specify v. 指定规定确定26. move v. 移动27. disk n. 盘磁盘28. text n. 正文文本29. drive v. 驱动;n. 驱动器30. see v. 看看出查看31. name n. 名名称;vt. 命名32. record n. 记录33. box n. 箱匣(逻辑)框34. database n. 数据库35. help v. & n. 帮助36. memory n. 记忆存储存储器37. which pron. 哪个a. 那一个38. all a. 全全部;ad. 完全39. on ad. 接通导电开40. copy n. 复制v. 拷贝41. shell n. 壳外壳42. delete vt. 删除删去作废43. enter v. 键入送入44. margin n. 余量边缘边际45. mark n. 标记;vt. 加标记46. also ad. & conj. 也亦还47. do v. 做干;n. 循环48. information n. 信息情报49. choose v. 挑选选择选定50. select vt. 选择51. group n. 组群52. first a. & ad. & n. 第一首先53. field n. 字段域栏场54. procedure n. 过程程序工序55. print v. 打印印刷56. return v. 返回回送57. number n. 数字号码;vt. 编号58. selected a. 精选的59. want v. 需要应该缺少60. window n. 窗口61. message n. 信息消息电文62. dialog n. & vt. 对话63. example n. 例子实例64. create vt. 创立建立65. insert vt. 插入66. related a. 相关的67. item n. 项项目条款68. edit vt. 编辑编排编篡69. marked a. 有记号的70. area n. (区)域面积方面71. parameter n. 参数参变量72. then ad. & conj. 那时则73. variable a. 可变的;n. 变量74. tab n. 制表键75. up ad. 上向上a. 高的76. string n. 行字符串77. each a. & ad. 各(自)每个78. active a. 激活的活动的79. topic n. 题目论题80. start v. 起动开始启动81. mode n. 态方式模82. selection n. 选择83. function n. 函数功能操作84. word n. 字(词)单词85. make vt. 制造形成接通86. right a. 右边的正确的87. value n. 值88. button n. 按钮89. index n. 索引变址指数90. without prep. 没有在…以外91. appear vi. 出现显现好像92. left a. & n. 左边(的) 93. save v. 保存94. next n. 下一次a. 其次95. off ad. (设备)关着脱离96. following a. 下列的以下的97. control v. 控制支配管理98. only a. 唯一的ad. 仅仅99. user n. 用户100. end n. 结束终点端点101. system n. 系统102. contain vt. 包含包括103. time n. 时间;vt. 计时104. letter n. 字母信105. data n. 数据106. setting n. 设置调整107. desire v. & n. 期望108. position n. 位置;vt. 定位109. down ad. 落下降低减少110. task n. 任务;v. 派给…任务111. view n. & v. 视图景象112. switch n. & v. 开关转换切换113. include vt. 包括包含114. get v. 得到获得取115. default v. 缺省预置约定116. structure n. 结构构造构件117. into prep. 向内进入118. path n. 路径通路轨道119. blank n. 空白间隔120. open v. 打开开启断开121. add v. & n. 加增加添122. enable vt. 启动恢复正常操作123. operation n. 操作运算动作124. erase v. 擦除取消删除125. filename n. 文件名126. search v. 检索查询搜索127. another a. 另一个别的128. last a. & n. 最后(的) 129. column n. 列柱栏130. after prep. & ad. 以后后面131. prompt n. & v. 提示132. two n. & a. 二两双133. execute v. 实行实施134. about ad. 关于大约附近135. escape v. 逃避逸出换码136. error n. 错误误差差错137. currently ad. 目前现在138. extension n. 扩充延伸139. same a. 同样的相同的140. status n. 状态态状况141. run v. 运行运转操作142. argument n. 变元自变量143. statement n. 语句陈述命题144. shift v. 转义换档移位145. store n. & vt. 存储存储器146. scroll vt. 上滚(卷);n. 纸卷147. replace vt. 替换置换代换148. macro n. 宏宏功能宏指令149. page n. 页面页版面150. quit v. 退出结束151. define vt. 定义规定分辨152. reference n. & a. 参考;参考的153. other a. 别的另外的154. while conj. 当…的时候155. pressing n. & a. 压制紧急的156. restore vt. 恢复复原157. top n. 顶尖端158. how ad. 如何怎样多么159. color n. 颜色色彩(彩)色160. allow v. 允许容许161. block n. (字信息数据)块162. decimal n. & a. 十进制十进制的163. main a. 主要的164. definition n. 定义确实清晰度165. between prep. 在…之间中间166. optional a. 任选的可选的167. date n. 日期168. remove v. 除去移动169. arrow n. 箭头指针170. label n. 标签标号标识符171. within prep. 在…以内172. issue v. 发行出版流出173. different a. 不同的各种各样的174. available a. 可用的175. returned a. 退回的176. associate v. 相联联想关联177. attribute n. 属性标志表征178. dos 磁盘操作系统179. before prep. 以前前先180. order n. & vt. 指令次序;排序181. modify vt. 修改改变变址182. array n. 数组阵列183. mouse n. 鼠标器184. note n. 注解注释185. locate vt. 定位186. video n. 视频电视187. printer n. 打印机印刷机188. bar n. 条杆棒189. bottom n. & a. 底基础底下的190. carriage n. 滑架托架191. content n. 含量容量内容192. either a. & pron. 任何一个各193. ok ad. & a. 对好;全对194. space n. 空格键空间195. editor n. 编辑程序196. exist vi. 存在生存有197. scope n. 范围显示器198. paragraph n. 段(落)节短讯199. multi (词头)多200. clear v. 清除弄干净201. exit n. & vi. 出口;退出202. report vt. & n. 报告报表203. execution n. 执行204. backup n. 备份后备后援205. version n. 版本206. find v. 寻找发现207. pointer n. 指针指示字208. subset n. 子集子设备209. keyboard n. 键盘210. full a. & ad. & n. 全(的)满211. check v. 校对栓查核算212. should v. & aux. 应当该213. single a. & n. 单个的一个单214. positioning n. 定位215. provide v. 提供216. title n. 题目标题217. expression n. 表达式218. through prep. & ad. 通过直通219. toggle n. & v. 触发器;系紧220. code n. 码代码编码221. such a. & pron. 这样的如此222. beginning n. 起点初223. guide n. 向导指南入门224. tree n. 树语法树225. environment n. 环境226. but 但是可是除非不过227. device n. 设备器件装置228. highlight n. 增强亮度提示区229. call v. 调用访问呼叫230. continue v. 连续继续231. indicate vt. 指示表示232. until prep. 到…为止直到233. begin v. 开始着手开端234. place vt. 放位地点235. rename vt. 更名改名236. swap v. 交换调动237. work n. 工作238. remain vi. 剩下留下仍然239. close v. & a. 关闭闭合紧密的240. combination n. 结合组合241. profile n. 简要剖面概貌242. unless conj. 除非243. so pron. & conj. 如此这样244. except prep. 除…之外除非245. turn v. & n. 转转动;圈匝246. back n. 背面反向底座247. sure a. & ad. 确实的;的确248. section n. 节段区域249. follow v. 跟随跟踪250. split v. 分开分离251. need v. 必须需要252. access n. 存取选取接近253. additional a. 附加的辅助的254. cancel v. 删除取消作废255. document n. 文献资料文件256. case n. 情况场合257. numeric n. & a. 数字的分数258. go vi. 运行达到259. load n. & v. 装入负载寄存260. try n. (尝)试试验261. size n. 尺寸大小容量262. entire a. & n. 完全的;总体263. leave v. 离开留下264. history n. 历史265. second n. & a. 秒第二(的)266. reflow v. & n. 回流逆流267. output n. 输出输出设备268. out n. & a. 输入在外269. both a. & ad. 两双都270. install vt. 安装271. source n. 源电源源点272. way n. 路线途径状态273. assign vt. 赋值指定分派274. support vt. 支援支持配套275. specific a. 特殊的具体的276. join v. & n. 连接并(运算)277. expand v. 扩充扩展展开278. like a. 类似的同样的279. diskette n. 软磁盘软盘片280. skip v. 跳跃(定位)跳过281. application n. 应用282. confirmation n. 认可283. whether conj. 无论不管284. hold v. 保持285. click n. “卡搭”声插销286. write v. 写存入287. byte n. (二进制的)字节288. abbreviate vt. 缩写省略289. show v. 显示呈现出示290. otherwise ad. & a. 另外291. working n. 工作操作作业292. delimiter n. 定界符分界符293. location n. 定位(存储器)单元294. perform v. 执行完成295. graphic n. & a. 图形图形的296. read v. 读读阅297. confirm vt. 证实确认298. sort v. 分类排序299. clause n. 条款项目子句300. once ad. & n. 只一次一旦301. however conj. 然而可是302. extend v. 扩充303. look v. 看查看304. starting a. 起始的305. now ad. & n. 此刻现在306. original n. & a. 原文原(初)始的307. correspond vi. 通信(联系)308. property n. 性(质)特征309. several a. & n. 若干个几个310. learn v. 学习训练311. cause n. 原因理由312. bracket n. (方)括号等级313. omit vt. 省略删去遗漏314. running a. 运行着的游动的315. sub-directory n. 子目录316. edge n. 棱边边缘界限317. form n. 格式表格方式318. instruction n. 指令指导319. ascii n. 美国信息交换标准码320. below a. & prep. 下列的;低于321. standard n. 标准322. occurrence n. 出现发生323. lock n. & v. 锁封闭;自动跟踪324. append vt. 附加增补325. destination n. 目的地接收站326. password n. 口令保密字327. point n. 点小数点句号328. variety n. 变化种类品种329. many a. & n. 许多多数330. buffer n. 缓冲器331. useful a. 有用的332. object n. 对象目标物体333. again ad. 再又重新也334. operating a. 操作的控制的335. carry v. 进位带336. update v. 更新修改校正337. moving n. & a.活动的自动的338. coprocessor n. 协同处理器339. overlay v. 覆盖重叠340. practice n. 实习实践341. navigation n. 导航342. automatically ad.自动地机械地343. total n. & v. 总数;总计344. previous a. 早先的上述的345. software n. 软件346. shortcut n. 近路捷径347. long a. 长的远的348. unique a. 唯一的独特的349. part n. 部分零件350. updated a. 适时的更新的351. internal a. 内部的352. fill v. 填充353. basic n. & a. 基本;基本的354. math n. 数学355. since prep. 自从…以来356. determine v. 确定357. making n. 制造构造358. center n. 中心中央359. already ad. 已经早已360. keyword n. 关键字(词)361. action n. 操作运算362. condition n. 条件情况vt. 调节363. quick a. & ad. 快速的灵敏的364. assigned a. 指定的赋值的365. give vt. 给出赋予发生366. large a. (巨)大的大量的367. chapter n. 章段368. computer n. 计算机369. complete v. & a. 完成;完整的370. past a. 过去的结束的371. match v. 比较匹配符合372. recover v. 恢复回收373. always ad. 总是一直始终374. require v. 需要要求375. opening n. 打开断路孔376. network n. & vt. 网络;联网377. sign n. 符号信号记号378. release vt. & n. 释放核发版379. three a. & n. 三(的) 380. recall vt. 撤消复活检索381. deletion n. 删去(部分)删除382. fixed a. 固定的不变的383. amount vt. & n. 总计;合计384. alias n. 别名代号标记385. quote n. & v. 引号;加引号386. correct a. & vt. 正确的387. else ad. & conj. 否则此外388. maximum n. & a. 最大(的)389. under prep. 在…下面(之下) 390. take v. 取拿391. switching n. 开关转接交换392. element n. 元件元素码元393. modification n. 改变修改394. modified a. 修改的变更的395. input n. 输入输入设备396. uppercase n. 大写字母397. plus prep. 加加上外加398. found v. 建立创办399. debug vt. 调试400. force v. & n. 强制压力强度401. lowercase n. 下档小写体402. just ad. 恰好403. undo vt. 取消废除404. environ vt. 围绕包围405. why ad. 为什么406. temporary a. 暂时的临时的407. put v. 存放(记录)放置408. instead ad. (来)代替当作409. encounter v. & n. 遇到碰到410. across prep. 交叉越过411. matching n. 匹配调整412. wildcard n. 通配符413. spill v. 漏出溢出漏失414. level n. 水平级层次415. browse v. 浏览416. speech n. 说话言语语音417. occur vi. 发生出现存在418. memo n. 备忘录419. prior a. 先验的优先的420. loaded a. 有负载的421. length n. (字记录块)长度422. round v. 舍入四舍五入423. variant n. & a. 变体易变的424. floppy n. 软磁盘425. machine n. 机器计算机426. square n. & a. 正方形427. supply vt. & n. 电源供给428. home n. & a. 家出发点429. normal a. & n. 正常标准430. onto prep. 向…到…上431. during prep. 在…期间432. module n. 模块(程序设计) 433. monochrome n. 单色434. assistance n. 辅助设备帮助435. tell n. 讲说教计算436. library n. (程序…)库图书馆437. demonstration n. (公开)表演示范438. stack n. 栈堆栈存储栈439. even a. & ad. 偶数的;甚至440. evaluate v. 估计估算求值441. times n. 次数442. previously ad. 以前预先443. directly ad. 直接地立即444. logical a. 逻辑的逻辑“或” 445. template n. 标准框样板模板446. calling n. 呼叫调用调入447. later a. 更后的后面的448. driver n. 驱动器驱动程序449. therefore ad. & conj. 因此所以450. saving a. 保存的451. detail n. 元件零件细节452. linker n. 连接程序453. loop n. 圈环(程序)循环回路454. process vt. 处理进程加工455. scheme n. 方案计划图456. every a. 每个全体所有的457. refer v. 访问引用涉及458. possible a. 可能的潜在的459. above a. 在…之上大于460. overview n. 综述概要461. result n. 结果462. syntax n. 语法文法句法463. abbreviation n. 缩短省略简称464. bios n. 基本输入/输出系统465. hidden a. 隐藏的秘密的466. null n. & a. 空(的)零(的) 467. send v. 发送468. private a. 专用的私人的469. hard a. 硬的470. hardware n. 硬件471. say v. 说显示假定472. equal vt. & n. 等于相等;等号473. pack n. 压缩包裹474. minus a. & n. 负的;负数减475. alternate a. 交替的备用的476. collapse v. 崩溃破裂477. corner n. 角角落转换478. present a. & v. 现行的;提供479. interpreter n. 解释程序翻译机480. advance v. & n. 进步提高;进展481. forward a. 正向的482. fast a. & ad. 快速的483. special a. 专用的特殊的484. slash n. 斜线485. utility n. & a. 实用程序486. regardless a. 不注意的不考虑的487. disable vt. 禁止停用488. compatible a. 可兼容的可共存的489. depend vi. 随…而定取决于490. empty a. 空零未占用491. alphabetical a. 字母(表)的abc的492. branch n. 分支支线;v. 转换493. resume v. 重(新)开(始) 494. multiple a. 多次的复杂的495. monitor n. 监视器监督程序496. configuration n. 配置497. replacement n. 替换置换更新498. required a. 需要的499. macros n. 宏命令(指令) 501. loss n. 损耗损失502. batch n. 批批量成批503. exact a. 正确的504. aboveboard ad. & a. 照直公开的505. activate vt. & n. 使激活驱动506. around ad. & prep. 周围围绕507. slow a. & ad. 慢速的508. floating a. 浮动的浮点的509. refresh v. 刷新更新再生510. stop v. 停止停机511. pass v. 传送传递遍(数)512. public a. 公用的公共的513. eject n. 弹出514. ignore vt. 不管忽略不计515. share v. 共享共用516. sequence n. 顺序时序序列517. consist vi. 符合包括518. step n. 步步骤步长档519. double a. 两倍的成双的520. come vi. 来到出现521. lower a. 下部的低级的522. describe vt. 描述沿…运行523. count v. 计数计算524. pop v. 上托弹出(栈) 525. valid a. 有效的526. suspend v. 中止暂停挂起527. enhance vt. 增强放大夸张528. separate v. & a. 分隔分离各自的529. echo n. 回波反射波530. necessary a. 必要的必然的531. greater than 大于532. able a. 能…的有能力的533. marking n. 标记记号传号534. ask v. 请求需要535. term n. 项条款术语536. bring v. 引起产生拿来537. warning n. & a. 报警预告538. less a. & ad. 更小更少539. whose pron. 谁的540. comment n. & vi. 注解注释541. effect n. 效率作用效能542. expanding a. 扩展的扩充的543. on-line a. 联机的544. reorder v. (按序)排列排序545. direct a. 直接的546. enclose vt. 封闭密封围住包装547. reset vt. 复位置“0”548. various a. 不同的各种各样549. paper n. 纸文件论文550. prevent v. 防止预防551. side n. (旁)边面侧(面)552. push v. 推按压进(栈) 553. programming n. 程序设计编程序554. upper a. 上的上部的555. row n. 行556. pressed a. 加压的压缩的557. temporarily ad. 暂时558. day n. 日天白天时代559. repaint vt. 重画560. redefine vt. 重新规定(定义) 561. relation n. 关系关系式562. dimension n. 尺寸维因次563. boundary n. 边界界限约束564. zoom v. 变焦距565. initialize v. 初始化566. personal a. 个人的自身的567. hello int. & v. 喂!;呼叫568. true a. & n. 真实选中569. wish v. & n. 祝愿希望570. font n. 铅字字形571. know v. 知道了解认识572. convert v. 转换变换573. global n. 全局全程全局符574. still a. & n. & v. 静止的平静575. installation n. 安装装配576. invoke vt. 调用请求577. interactive a. 交互式交互的578. described a. 被看到的被发现的579. century n. 世纪580. literal a. 文字的581. rather ad. 宁可有点582. exclusive a. 排斥排它性583. marker n. 记号标记标志584. wait v. 等待585. appropriate a. 适当的合适的586. fit v. & n. 适合装配;非特587. adapter n. 适配器转换器588. filter n. 滤波器滤光材料589. break v. 断开撕开中断590. backward ad. 向后逆倒591. searching n. 搜索592. receive v. 接收593. dual a. 对偶的双的594. retry vt. 再试复算595. normally ad. 正常地通常596. exactly ad. 正好完全精确地597. immediately ad. 直接地598. separated a. 分开的599. high a. 高600. equivalent a. 相等的等效的601. light n. & a. 光(波源);轻的602. zero n. 零零位零点604. width n. 宽度605. language n. 语言606. startup n. 启动607. much a. & n. 很多许多大量608. per prep. 每按609. over prep. 在…上方610. mirror n. & v. 镜反射反映611. request n. & vt. 请求612. keypad n. 小键盘613. keep v. 保持保存614. resident a. 驻留的615. learning n. 学问知识617. summary n. 摘要汇总提要618. well n. & a. 井;好良好619. link n. & v. 链接;连接联络620. according to a. 按照根据621. identify v. 识别辨认622. designated a. 指定的特指的623. pertain vi. 附属属于关于624. expansion n. 展开展开式625. incompatible a. 不兼容的626. blinking n. 闪烁627. month n. 月份628. precede v. 先于629. readily ad. 容易地不勉强630. transportable a. 可移动的631. appropriately ad. 适当地632. routine n. 程序例行程序633. ready a. 就绪准备好的634. listing n. 列表编目635. newly ad. 新近重新636. year n. (一)年年度年龄637. contact n. 接触触点638. session n. 对话通话639. own a. & v. 自己的;拥有640. redraw vt. 再拉641. here ad. 在这里642. manual a. 手工的手动的643. particular a. 特定的特别的644. rectangle n. 矩形645. additive a. & n. 相加的;附加物646. similar a. 相似的647. assembly n. 汇编安装装配648. copyright n. 版权649. description n. 描述650. retrieve v. 检索651. mistake n. 错误652. produce v. 生产制造653. ram 随机存取存储器654. exception n. 例外异常异议655. digit n. 数字位数位656. reverse v. & a. 反向的逆657. minimum n. & a. 最小(的)658. enough a. & ad. 足够的充足的659. although conj. 虽然即使660. reindex v. & n. 变换(改变)符号661. third a. & n. 第三三分之一662. red a. & n. 红色(的) 663. along prep. & ad. 沿着664. test n. & v. 测试665. small a. 小的小型的666. feed v. 馈给(打印机)进纸667. company n. & v. 公司;交际交往668. movie n. 影片电影(院) 669. compile vt. 编译670. frequently ad. 常常频繁地671. undefined a. 未定义的672. state n. & vt. 状态;确定673. tick v;n. 滴答(响);勾号(√) 674. accept vt. 接受认可同意675. intense a. 强烈的高度的676. documentation n. 文件编制文本677. asterisk n. 星号(*) 678. easily ad. 容易地轻易地679. become v. 成为变成适宜680. address vt. & n. 寻址;地址681. interface n. 接口682. pause vi. 暂停683. repeat v. 重复684. restart v. 重新启动再启动685. assumed a. 假定的686. speed n. 速度687. entry n. 输入项(目)入口688. combine v. 组合联合689. organize v. 组织创办成立690. finished a. 完成的691. mixed a. 混合的692. permit v. 许可容许693. formatting n. 格式化694. root n. 根695. symbol n. 符号记号696. binary n. & a. 二进制;697. whenever ad. & conj. 随时698. reach v. & n. 范围达到范围699. caution n. & v. 警告注意700. subtotal n. & v. 小计求部分和701. card n. 卡片插件(板) 702. general a. 通用的703. associated a. 联合的相联的704. transfer v. 传送转换转移705. connect v. 连接706. partition v. 划分分区部分707. hexadecimal a. 十六进制的708. generate vt. 产生发生生成709. specification n. 说明书规则说明书710. customize vt. 定制定做711. far a. 远的遥远的712. nest v. 嵌套后进先出713. duplicate vt. 复制转录加倍714. compression n. 压缩浓缩715. unable a. 不能的716. means n. 方法手段717. alternately ad. 交替地轮流地718. intensity n. 强度亮度719. reading n. 读读数720. let v. 让允许721. explicitly ad. 明显地显然地722. compare v. 比较对照比喻723. sector n. & v. 扇区段;分段724. problem n. 问题难题725. vertically ad. 竖直地直立地726. horizontally ad. 水平地727. backspace v. 退格回退728. terminate v. 端接终止729. people n. 人们730. short a. & n. 短的;短路731. drag vt. 拖拉牵曳732. formatted a. 有格式的733. preview n. & vt. 预映734. underscore vt. 在…下面划线735. correctly ad. 正确地736. initially ad. 最初开头737. reformat v. 重定格式738. inside n. & a. 内部内容;内部的739. integrate v. 综合集成740. controlled a. 受控制的受操纵的741. period n. 周期742. huge a. 巨大的非常的743. determined a. 坚决的毅然的744. trailing n. & a. 结尾;尾随的745. seek v. 查找寻找探求746. introduction n. 入门介绍引进747. indent v. 缩排748. base n. 基底基地址749. integer n. 整数750. attempt vt. & n. 尝试试验751. twice n. & ad. 两次两倍于752. formed a. & n. 成形753. subscript n. 注脚下标754. tiny a. 微小的微量的755. model n. 模型样机型号756. correction n. 校正修正757. rating n. 定额标称值758. secondary a. 辅助的第二的759. opened a. 开路的断开的760. limit n. 极限限界761. sun n. 太阳日762. translate v. 翻译转换平移763. reason n. 原因理由764. colon n. 冒号“:” 765. avoid vt. 避免取消无效766. range n. 范围域区域767. allocate vt. 分配768. wordperfect a. 一字不错地熟记的769. simply ad. 简单地单纯地770. verify vt. 鉴定检验核对771. manner n. 方法样式惯例772. direction n. 方向定向指向773. portion n. & vt. 部分;分配774. emulator n. 仿真器仿真程序775. successful a. 成功的776. applied a. 适用的外加的777. sum n. 和合计总额778. achieve vt. 完成实现779. together ad. 一同共同相互781. delay v. 延迟782. free a. 自由的空闲的783. properly ad. 真正地适当地784. kind n. 种类属级等785. splitting n. 分区(裂) 786. feature n. 特征特点787. console n. 控制台操作台788. operate v. 操作运算789. kernel n. 内核(核心)程序790. easy a. & ad. 容易的;容易地791. modifier n. 修改量变址数792. invalid a. 无效的793. compiler n. 编译程序(器) 794. dot n. 点795. beep n. 蜂鸣声嘀嘀声796. face n. 面表面797. random a. 随机的798. facility n. 设施装备便利799. heading n. 标题800. asynchronous a. 异步的非同步的801. series n. 序列系列串联802. individual a. 个别的单个的803. explain v. 阐明解释804. paste n. 湖胶膏805. welcome vt. & n. 欢迎806. six n. & a. 六(个)(的) 807. early a. & ad. 早期初期808. wrap v. & n. 包装缠绕809. blue a. & n. 蓝(色)青色810. queue v. & n. 排队队列811. interrupt v. & n. 中断812. respect n. & vt. 遵守关系813. converted a. 转换的变换的814. common a. 公用的815. hyphen n. 连字符短线816. serial a. 串行的串联的817. loading n. 装入加载存放818. retain vt. 保持维持819. setup n. 安排准备配置820. freeze v. 冻结结冰821. intend vt. 打算设计822. explanation n. 说明注解注释823. certain a. 确实的确定的824. zap v. 迅速离去击溃825. archive vt. 归档826. negative a. 负的否定的827. image n. 图像影像映像828. platform n. 平台台架829. often ad. 经常往往屡次830. signal n. & v. 信号;发信号831. cpu 控制处理部件832. bit n. 比特;(二进制)位833. fully ad. 十分完全834. deactivate vt. 释放去活化836. usually ad. 通常平常一般837. recommend vt. 推荐建议838. maintain vt. 维护保养保留839. important a. 严重的显著的840. central a. 中央的中心的841. addition n. 加法增加842. anytime ad. 在任何时候843. analyst n. 分析员844. false a. 假(布尔值)错误845. black a. & n. 黑色的黑色846. gather n. 聚集集合847. cycle n. & v. 周周期;循环848. relative a. 相对的849. offer v. 提供给予呈现850. ending n. 结束851. rent v. & n. 租用;裂缝852. sentence n. 句(子) 853. remember v. 存储记忆记住854. proper a. 真的固有的855. design v. 设计856. examine v. 检验考试审查857. initial a. 最初的初始的858. corrupt v. & a. 恶化;有毛病的859. buy v. 买购买赢得860. increase v. 增加增大861. host n. 主机862. sample n. & v. 样品样本;抽样863. pending a. 悬而未决的未定的864. divide v. 除865. boot n. 引导靴866. hide v. 隐藏隐蔽867. half n. & a. & ad. 一半半个868. magenta n. & a. 深红色(的)869. leading n. & a. 引导(的) 870. wrong a. & ad. n. 错误(的)871. today n. & ad. 今天872. least a. & ad. 最小(的)873. opposite a. & n. & ad. 相反的874. white a. & n. 白色(的)875. override v. & n. 超越克服876. brown a. & n. 褐色(的)棕色877. hex a. & n. 六角形的878. rest n. & v. 剩余休息879. damage n. & vt. 损伤故障880. instant a. 立刻的直接的881. reserved a. 保留的预订的882. technology n. 工艺技术制造学883. handle n. 处理句柄884. apply v. 应用适用于作用885. stand v. 处于(状态)保持886. payment n. 支付付款887. kilobyte n. 千字节(kb) 888. parenthesis n. 括弧圆括号889. scan v. 扫描扫视搜索890. locating n. 定位查找891. developer n. 开发者显影剂892. murder n. 弄坏毁掉893. flush v. 弄平使齐平894. unlock v. 开锁打开895. movement n. 传送移动896. consecutive a. 连续的连贯的897. collection n. 集合聚集画卷898. front a. 前面的正面的899. addressing n. 寻址900. prefix n. 前缀901. carousel n. 圆盘传送带902. safety n. 安全保险903. static a. 静态的不变的904. background n. 背景底色905. product n. (乘)积产品906. assignment n. 赋值分配907. bad a. 坏的不良的908. declare v. 说明909. adjust vt. 调整调节控制910. recognize v. 识别911. route n. 路线路由912. respectively ad. 分别地913. unsuccessful a. 不成功的失败的914. received a. 被接收的公认的915. navigate v. 导航驾驶916. considered a. 考虑过的被尊重的917. due a. 到期的应付(给)的918. recently ad. 近来919. room n. 房间空间920. descend v. 下降落下921. fact n. 事实922. alter v. 改变修改923. track n. 磁道轨道924. precedence n. 优先权925. skeleton n. 骨架框架926. log n. & v. 记录存入927. star n. 星形星号928. hot a. 热的929. replaceable a. 可替换的930. accessible a. 可以使用的931. involve vt. 涉及卷入占用932. configure vt. 使成形933. question n. 问题934. green n. & a. 绿色绿色的935. entirely ad. 完全地彻底地936. helpful a. 有帮助的有用的937. middle a. 中间的938. declared a. 承认的申报的939. compress vt. 压缩精减940. graphically ad. 用图表表示941. auto a. 自动的942. automatic a. 自动的943. aligned a. 对准的均衡的944. anywhere ad. 在任何地方945. terminal n. 终端端子946. door n. 舱门入口孔947. expire v. 终止期满948. resolution n. 分辨率949. local a. 局部的本地的950. semicolon n. 分号(;) 951. reread vt. 重读952. overwrite v. 重写953. critical a. & n. 临界的;临界值954. manager n. 管理程序955. capability n. 能力效力权力956. affected a. 受了影响的957. allowed a. 容许的958. border n. 边界框界限959. cache n. 高速缓存960. bell n. 铃钟961. play v. 玩奏放音放象962. quickly a. 快迅速地963. fastback n. 快速返回964. answer n. & v. 响应回答;答复965. represent v. 表示表现代表966. difference n. 差分差967. highest a. 最高的968. project n. 项目计划设计969. physical a. 物理的实际的970. matter n. 物质内容事情971. hercules n. 大力神大力士972. reduce v. 减少降低简化973. publisher n. 出版者发行人974. trim n. 区标微调975. substitute v. 代替替换代入976. disabled a. 禁止的报废的977. recent a. 近来的978. positive a. 正的阳的正片979. upgrade v. 升级提高质量980. instance n. & vt. 例子情况;举例981. happen vi. (偶然)发生碰巧982. elapsed vi. & n. 经过983. future n. & a. 将来未来的984. midnight n. & a. 午夜985. though conj. 虽然尽管986. nor conj. 也不987. mono a. & n. 单音的988. slide v. & n. 滑动滑动触头989. abort v. & n. 中断故障990. jump v. & n. 转移991. toward prep. 朝(着…方向)992. throughout prep. 贯穿整遍993. via prep. 经过经由994. among prep. 在…之中中间995. neither a. & pron. (两者)都不996. layer n. & v. 层涂层997. scatter v. 散射分散散布998. attention n. 注意(信号)999. convention n. 常规约定协定1000. conventional a. 常规的习惯的00. table n. 表。

数据库相关单词

数据库相关单词

数据库相关单词AACM ( Association for Computing Machinery )[ə,səusi'eiʃən] 美国计算机协会access ['ækses] 存取、访问Toolbars provide experienced users fast access to frequently used functions.工具栏为有经验的用户提供快速访问常用功能的途径。

active ['æktiv] 活跃的Make the next split view the active one.使下一分割视图成为活跃视图。

argument ['ɑ:gjumənt] 参数Invalid function argument value, type or count.无效的函数参数值,类型或个数.argument list 参数列表alter ['ɔ:ltə] v.修改To alter a part of an instruction or routine.改变指令或例行程序中的某一部分。

appraisal [ə'preizəl] 评估,评价Appraisal is an important part of teaching activity.评价是教学活动的重要组成部分。

Bbetween [bi'twi:n] 在...之间between eight and twelve o'clock在8点和12点钟之间Ccascade [kæs'keid] 级联All relations may not involve a cascade deletion.不是所有的事物都能使用级联删除。

clob [klɔb] 字符大对象(CLOB)是变长字符串,最大长度2G。

用于存储大的单字节字符集数据。

字符数据count [kaunt] 计算,计数Invalid function argument value, type or count.无效的函数参数值,类型或个数.context area 上下文compile [kəm'pail] 编译Generally speaking, a constant expression is an expression that the compiler can evaluate at compile-time.一般来说,常量表达式是编译器在编译时就能够计算出结果的表达式。

数据库中英语单词

数据库中英语单词

national全国性的'næʃən!'næʃənəlcomputer电脑,电子计算机kəm'pjutɚkəm'pju:tərank等级;地位ræŋk ræŋkexamination检查,调查考试ɪg,zæmə'neʃən i g,zæmi'neiʃən information资讯信息,ɪnfɚ'meʃən,infə'meiʃəndata资料,数据'detə'deitədatabase资料库,数据库'detə,bes'deitə,beis DB conceptual概念上的kən'sɛptʃuəl kən'septjuəl entity实体'ɛntətɪ'entiti特Arelationship关系,关联rɪ'leʃən'ʃɪp ri'leiʃənʃip attribute属性;特性ə'trɪbjutə'tribju:t b益Udomain领域, 范围do'men də'mein逃欧Akey键;码ki ki:abstract抽象的'æbstrækt'æbstrækttype集;型taɪp taipvalue数值'vælju'vælju:]欧Uschema模式'skimə'ski:mə哥instance实例'ɪnstəns'instəns的external外面的,外部的ɪk'stɝnəl eks'tə:nl的internal内的,内部的ɪn'tɝn!in'tə:nəlmapping映象'mæpɪŋ'mæpiŋcomponent子件/组件kəm'ponənt kəm'pəunəntgrid网格grɪd grid谷engineering工程化,ɛndʒə'nɪrɪŋ,endʒi'niəriŋtrust信任,信赖trʌst trʌstbenchmark标准检查程序'bɛntʃ,mɑrk'bentʃ,mɑ:k process过程,进程; 处理'prɑsɛs'prəusestopic题目;话题'tɑpɪk'tɔpikidentifier标识符aɪ'dɛntə,faɪɚai'denti'faiəindependent独立的,ɪndɪ'pɛndənt,indi'pendənt dependent依靠的;依赖的dɪ'pɛndənt di'pendənt] integer整数'ɪntədʒɚ'intidʒəintegrity完整,完全ɪn'tɛgrətɪin'tegriticonstraint约束;限制kən'strent kən'streint句index索引'ɪndɛks'indeksbucket桶'bʌkɪt'bʌkit啊assertion断语; 断定ə'sɝʃənə'sə:ʃənprivilege权限'prɪv!ɪdʒprivilidʒ柚河愕勒传grant给予,授予grænt grɑ:nt谷revoke撤回,撤销rɪ'vok ri'vəukrole角色rol rəulconnector连接件kə'nɛktɚkə'nektəpreliminary概要prɪ'lɪmə,nɛrɪpri'liminəridetail细节'ditel'di:teilcommit委托kə'mɪt kə'mitrollback回滚'rol,bæk'rəulbækcursor游标'kə:sə'kɝsɚfetch获取fɛtʃfetʃ去icon图标'aɪkɑn'aikɔnmenu菜单'mɛnju'menju:pointing指点;指向'pɔɪntɪŋ'pɔintiŋnumeric数字的nju'mɛrɪk nju:'merikdecimal十进位的;小数的'dɛsɪm!'desiməlfloat浮点数flot fləut勒欧real现实的,实际的'riəl'ri:əlchar定长字符tʃɑr tʃɑ:text文本tɛkst t ekstbinary二元的;二进制'baɪnərɪ'bainəriimage影像图象'ɪmɪdʒ'imidʒmoney货币'mʌnɪ'mʌnicreate创建krɪ'et kri'eit A特default默认的dɪ'fɔlt di'fɔ:ltnull零空nʌl nʌl愕unique唯一的ju'nik ju:'ni:kcheck查对,检查tʃɛk tʃekreference提及;涉及'rɛfərəns'refərəns冷customer顾客'kʌstəmɚ'kʌstəmə啊identity身份;本身aɪ'dɛntətɪai'dentitiaddress住址,地址ə'drɛsə'drespostcode邮政编码'post,kod'pəust,kəuddrop删除drɑp drɔp柚alter改变;修改'ɔltɚ'ɔ:ltə哦欧column列'kɑləm'kɔləmadd添加;增加ædædselect选择sə'lɛkt si'lektwhere当hwɛrhwɛəhaving所有'hævɪŋ'hæviŋ益ascend上升ə'sɛndə'senddescend下降dɪ'sɛnd di'senddistinct独特的dɪ'stɪŋkt di'stiŋkt D 丁count总计kaunt kauntsum总和sʌm sʌm啊average平均数'ævərɪdʒ'ævəridʒAVGmaximum最大数'mæksəməm'mæksiməm帽目max minimum最小量'mɪnəməm'miniməm Minquantity数量'kwɑntətɪ'kwɔntitiamount总数;总额ə'mauntə'mauntinner内部的,里面的'ɪnɚ'inəjoin连结dʒɔɪn dʒɔinouter在外的,外面的'autɚ'autəunion结合'junjən'ju:njən U呢益percent百分率pɚ'sɛnt pə'sentcase kes keisinsert插入ɪn'sɝt in'sə:tupdate更新ʌp'detʌp'deit啊delete删除dɪ'lit di'li:t梨exist存在ɪg'zɪst ig'zisttrue真的tru tru:false假的fɔls fɔ:lsclustered聚集索引'klʌstɚd'klʌstədoption选项; 选择'ɑpʃən'ɔpʃəntransaction事务træn'zækʃən træn'zækʃən树print印刷prɪnt p rintinsufficient资金不足,ɪnsə'fɪʃənt,insə'fiʃəntfund资金fʌnd fʌnd啊atomicity原子数consistency一致性原则kən'sɪstənsɪkən'sistənsi C C isolation隔离,aɪs!'eʃən,aisə'leiʃəndurability持久性,djurə'bɪlətɪ,djurə'bilititemp临时'tɛmp'tempsemaphore信号量'sɛməfor'seməfɔ:哦愕lock锁lɑk lɔklocking封锁exclusive排外的iks'klu:sivɪk'sklusɪv孤路Cunlock开…的锁ʌn'lɑk'ʌn'lɔkdisplay显示dɪ'sple di'spleigranularity锁粒度extents区undo撤消ʌn'du'ʌn'du:啊redo重做ri'du ri:'du:logging日志文件'lɔgɪŋ'lɔgiŋ益agent代理人'edʒənt'eidʒəntdistributed分布式的dɪ'strɪbjutɪd dis'tribju:tid句BU coordinator协调者ko'ɔrdn,etɚkəu'ɔ:dineitə扣呢A search检索sɝtʃsə:tʃWindows窗口操作系统'wɪndoz'windəuzprofessional专家prə'fɛʃən!prə'feʃənəlmaster雇主'mæstɚ'mɑ:stəpage页pedʒpeidʒfilename文件名declare声明dɪ'klɛr di'klɛəDimport输入;引用ɪm'port im'pɔ:t哦愕export输出ɪks'port eks'pɔ:t抱wizard向导'wɪzɚd'wizədaccess访问;存取'æksɛs'æksesprocedure存储过程prə'sidʒɚprə'si:dʒəC execute执行'ɛksɪ,kjut'eksikju:t Cきゅfunction函数'fʌŋkʃən'fʌŋkʃən啊trigger触发器'trɪgɚ'trigəencryption加密instead of前触发ɪn'stɛd əv in'sted əv益inserted插入的ɪn'sɝtɪd in'sə:tidadministrator管理人əd'mɪnə,stretɚəd'ministreitəlogin注册,登录lɑg'ɪn lɔg'inpasswd更改密码password口令;暗语'pæs,wɝd'pɑ:swə:dgroup组grup gru:pdeny否定dɪ'naɪdi'naisysadmin系统管理员security安全性sɪ'kjurətɪsi'kju:ritiaccount账户ə'kauntə'kauntbackup备份'bæk,ʌp'bæk,ʌp啊physical物理的'fɪzɪk!'fizikəldisk磁盘dɪsk diskpipe管道paɪp paiptape磁带tep teiprestore恢复rɪ'stor ri'stɔ:dump转储dʌmp dʌmpdifferential差异备份,dɪfə'rɛnʃəl,difə'renʃəl truncate截去'trʌŋket'trʌŋkeit啊んrecovery复原rɪ'kʌvərɪri'kʌvəri啊caption标题'kæpʃən'kæpʃənfont字体fɑnt fɔnt啊text本文tɛkst t ekstprivate个人的,私人的'praɪvɪt'praivitsub子sʌb sʌb啊click点击klɪk klikbeep警笛声bip bi:ptextbox文本框checkbox复选框ListBox列表框ComboBox组合框enabled启用状态dim标注dɪm dimsucess成功error错误'ɛrɚ'erə第17章为空thing事务θɪŋθiŋdiagram图表'daɪə,græm'daiəgræm谷association关联ə,sosɪ'eʃənə,səusi'eiʃən package打包'pækɪdʒ'pækidʒpublic公用的'pʌblɪk'pʌblik柚捕protected受保护的prə'tɛktɪd prə'tektidprivate私人的'praɪvɪt'praivitpersistent持久性pɚ'sɪstənt pə'sistənt multiplicity多样性,mʌltə'plɪsətɪ,mʌlti'plisiti aggregation聚集,ægrɪ'geʃən,ægri'geiʃən composition组成,kɑmpə'zɪʃən,kɔmpə'ziʃən generalization继承,dʒɛnərəlai'zeʃən,dʒenərəlai'zeiʃən cashier出纳员kæ'ʃɪr kæ'ʃiədescription描述dɪ'skrɪpʃən di'skripʃən D 哥provider供应者prə'vaɪdɚprə'vaidəsalesperson销售员'selz,pɚsn'seilz,pə:sn universal普遍的,junə'vɝs!,ju:ni'və:səladaptive适应的ə'dæptɪvə'dæptivhierarchical层次结构,haɪə'rɑrkɪkl,haiə'rɑ:kikl warehouse仓库,货栈'wɛr,haus'wɛəhaushierarchy层次结构'haɪə,rɑrkɪ'haiərɑ:kilevel层次'lɛv!'levldimension维dɪ'mɛnʃən d i'menʃəncube立方体kjub kju:bdrill-down钻取roll-up卷起'rol,ʌp'rəul,ʌpslice切片slaɪs slaisdice切块daɪs dais词组意思缩写data processing数据处理Data management数据管理Database management system数据库管理系统DBMS database system数据库系统DBSdatabase administrator数据库管理员DBAend user最终用户;最终使用者database application system数据库应用系统DBASdata model数据模型conceptual data models概念数据模型entity set实体集relationship set联系集relational model关系模型Data View数据视图Data abstract数据抽象Divide and Conquer分治External level外部级Conceptual level概念级Internal level内部级view level视图级logical level逻辑级physical level物理级external schema外模式internal schema内模式data definition language数据定义语言DDLdata manipulation language数据操纵语言DML metadata元数据Data items数据项data flow diagram数据流程图DFDmanaged objects被管对象MOtransaction processing performance council每秒实务数TPC for exposition only参照图identifier-independent entities独立标识符实体集identifier-dependent entities从属标识符实体集identifying relationships标定型联系non-identifying relationships非标定型联系categorization relationships分类联系non-specific relationships不确定联系primary key主关键码foreign key外部关键码specific relationship确定型联系connection relationship连接联系generic entity一般实体集category entity分类实体集attribute value属性值userid用户标识符integrity constraint完整性约束user-defined integrity用户定义约束functional dependencies函数依赖first normal form第一范式1NFsecond normal form第二范式2NFthird normal form第三范式3NFboyce-codd normal form改进的第三范式BCNF multivalued dependency多值依赖forth normal form第四范式4NFjoin dependencies连接依赖fifth normal form第五范式5NFsearch key查找码heap file堆文件sequential file顺序文件clustering file聚集文件index file索引文件hashing file散列文件indexing索引技术ordered index有序索引index record索引记录index entry附标入口;索引项hash function散列函数indexed file被索引文件clustering index聚集索引nonclustering index非聚集索引index - sequential file索引顺序文件sequential access序列存取;顺序存取direct access直接存取dense index稠密索引sparse index稀疏索引primary index主索引secondary index辅助索引bucket overflow桶溢出dada dictionary数据字典metadata元数据system catalog系统目录derived attribute派生属性architectural design总体结构设计procedural design过程设计data design数据设计procedure design language过程设计语言PDL pointing device指点器structured query language结构化查询语言SQLUnicode统一的字符编码标准identity card身份证group by群组依据serial schedule串行调度concurrent schedule并发调度Serializable可串行conflict serializable冲突可串行的exclusive lock排它锁X锁shared lock共享锁S锁locking protocol锁协议two-phase locking两阶段锁2PLlog file日志文件Distributed Transaction coordinator分布式事务协调器DTCenterprise manager企业管理器query analyzer查询分析器log on登录American Standard Code for Information Interchange美国信息交换标准代码ASCII data transformation service数据转换服务DTSobject linking and embeding对象的链接与嵌入OLEOpen Database Connectivity开放式数据库连接ODBCapplication interface应用接口APIobject linking and embed database对象链接与嵌入的数据库OLE DB activex data object动态数据对象ADOapplication programming interface应用程序编程接口APIjava database connectivity standard JDBC第17章为空unified modeling language统一建模语言UMLmeta - meta model元元模型层meta model元模型层user model用户模型层class model类模型Type Model类型模型object model对象模型instance model实例模型use - case diagram用例视图class diagram结构视图object diagram对象图sequence diagram行为视图collaboration diagram协作图state diagram状态图activity diagram活动图sequence diagram实现视图depolyment diagram环境视图Superclass超类communication association通信关联sterotype构造型share aggregation共享聚集subsystem子系统shared memory共用存储器shared disk共用磁盘shared nothing无共享结构round robin轮转法hash partitioning散列划分range partitioning范围划分operational data操作性数据decision support system决策支持系统operational data store操作性数据存储materrialized view实视图metadata repository元数据库On-Line Analytical Processing在线分析处理materialized views物化视图rough set粗糙集。

计算机专业英语单词

计算机专业英语单词

1.1computer 计算机information processing 信息处理hardware 硬件software 软件program 程序general-purpose machine 通用(计算)机special-purpose machine 专用(计算)机instruction 指令set of instruction 指令集,指令系统input device 输入设备output device 输出设备Input/Output (I/O) 输入/输出main memory 主存储器central processing unit (CPU) 中央处理器bus 总线microcomputer 微型计算机minicomputer 小型计算机mainframe主机,特大型机desktop computer 台式计算机personal computer (PC) 个人计算机operating system 操作系统disk 磁盘Digital Video Disk (DVD) 数字视[频光]盘Computer Disk Read-Only Memory (CD-ROM) 光盘只读存储器keyboard 键盘mouse 鼠标audio 声[音]频的,声音的interface 接口peripheral 外围,外围设备monitor 监视,监视器reset 复位1.2instruction 指令instruction set 指令系统,指令集processor 处理器operation 操作、操作码、操作码指令operand 操作数register 寄存器clock 时钟megahert(MHz) 兆赫control unit 控制器,控制部件decode 译码,解码arithmetic and logic unit (ALU) 算术/逻辑部件word size (word length) 字长machine language 机器语言1.3hierarchical memory 存储器层次结构cache 高速缓冲存储器,高速缓存chip 芯片on-chip cache 单片高速缓存silicon-die 硅片magnetic disk 磁盘main memory 主存储器paged virtual memory 页式虚拟存储器Random Access Memory (RAM)随机(访问)存储器Read Only Memory (ROM) 只读存储器boot 引导,启动,自举Compact Disk ROM (CD ROM) 只读光盘disk drive 磁盘驱动器floppy disk (diskette) 软磁盘write once, read many (WORM) 一次写多次读magnetic tape 磁带register file 寄存器组latency 潜伏时间、等待时间page frame 页帧real memory (storage) 实存储器Dynamic RAM (DRAM) 动态随机存储器benchmark 基准测试程序,基准[程序],测试标准,基准volatile 易失性laser storage 激光存储器1.4latency 等待时间bandwidth 带宽(外设与存储器的传送速率范围)modem 调制解调器hard disk 硬(磁)盘code conversion 代码转换programmed I/O 程序控制I/O coprocessor I/O 协处理器I/O memory mapped I/O 存储器映射I/O interrupt 中断path 通路,路径multiprocessor 多处理器synchronization 同步化coherency 相关,相干direct memory access(DMA)直接存储器存取channel 信道,通道input/output system 输入输出系统buffering 缓冲accumulator 累加器peripheral 外围,外围设备pattern of bits 位模式load 装入,加载4.1computer network 计算机网络network architecture 网络体系结构protocol 协议open system interconnection reference model (OSI/RM) 开放系统互连参考模型Transmission Control Protocol/Internet Protocol (TCP/IP)传输控制协议/互联网协议channel 信道frame 帧packet 分组,包message 报文,消息connectionless 无连接的connection oriented 面向连接的user datagram protocol (UDP) 用户数据报协议data communication 数据通信resource sharing 资源共享data format 数据格式layer-based 分层次的physical medium 物理媒体(介质)International Standards Organization (ISO)国际标准化组织Department Of Defense (DOD)(美国)国防部industrial standard 行业标准transport layer 传输层,运输层network layer 网络层application layer 应用层end-to-end 端对端,终点到终点byte stream 字节流virtual terminal 虚拟终端4.2LAN (Local Area Network) 局域网client-server 客户服务器(方式)peer-to-peer 对等(方式)hub 集线器switch 交换机topology 拓扑(结构)star topology 星型拓扑Ethernet 以太(局域)网randomly 随机地CSMA/CD (Carrier Sense Multiple Access/Collision Detection) 载波侦听多路访问/冲突检测UTP (Unshielded Twisted Pair) 非屏蔽双绞线coaxial cable 同轴电缆NIC (Network Interface Card) 网络接口卡(网卡)multi-port bridge 多端口网桥router 路由器ASIC (Application-Specific Integrated Circuit)专用集成电路Gigabit Ethernet 千兆位以太网fiber-optic 光纤FDDI (Fiber Distributed Data Interface)光纤分布式数据接口ATM (Asynchronous Transfer Mode)异步转移(传输)模式WLAN (Wireless Local Area Network) 无线局域网ISM (Industrial, Scientific, and Medical) band工业、科学和医药频段FHSS (Frequency Hopping Spread Spectrum)跳频扩频DSSS (Direct Sequence Spread Spectrum) 直序扩频CDMA (Code Division Multiple Access) 码分多址MAC (Medium Access Control) 媒体访问控制WAP (Wireless Application Protocol)无线应用协议cell phone 蜂窝电话pager 寻呼机wireless bridge 无线网桥leased line 租用线4.3WAN (Wide Area Network) 广域网packet switching network 分组交换网priority code 优先级代码source address 源地址destination address 目的地址datagram 数据报virtual circuit 虚电路(SVC) Switched Virtual Circuit交换式虚电路(PVC) Permanent Virtual Circuit永久式虚电路multiplex 多路复用leased line network 租用线(路)网frame relay 帧中继CPE(Customer Premises Equipment)客户设备access line 接入线port 端口route 路由,路径backbone 主干网,骨干网trunk 干线,[ 局内]中继线,信息通路5.1 Internet 因特网ARPAnet ARPA计算机网,阿帕网Packet switching network分组交换网,包交换网interoperability 互操作性WWW(world wide web万维网,环球信息网hypertext 超文本client 客户browser 浏览器download 下载HTTP(hypertext transfer protocol)超文本传送协议URL(uniform resource locator)统一资源定位地址search engine 搜索引擎search criteria 搜索条件Web page 网页GUI(graphical user interface)图形用户接口IE(Internet Explorer)(微软公司的)浏览器软件Mosaic 美国计算机安全协会(NCSA)的公共WWW浏览器Navig (网景公司的)浏览器electronic mail 电子邮件SMTP(Simple Mail Transfer Protocol)简单邮件传送协议POP(Post Office Protocol)邮局协议FTP(File Transfer Protocol)文件传送协议Telnet(Telecommunication network)远程通信网远程登录(服务)TCP/IP(Transmission Control Protocol/ Internet Protocol)传输控制协议/互联网协议5.5network security 网络安全virus 病毒unauthorized access 非授权访问firewall 防火墙boot 自举,引导,启动sector (磁盘)扇区,扇面macro virus 宏病毒floppy disk 软(磁)盘download 下载,卸载identification 识别,验证,鉴定authentication 验证,鉴别password 口令,密码access card 存取卡biometric device 生物统计仪器filter 过滤,滤波block 封锁NFS(Network File System) 网络文件系统gateway 网关relay service 中继业务packet filtering 分组(包)过滤circuit gateway 电路网关application-level gateway 应用级网关screening router 屏蔽路由器bastion host 堡垒主机dual-homed gateway 双宿主网关screened-host gateway 屏蔽主机网关screened subnet 屏蔽子网6.2electronic commerce 电子商务Electronic Funds Transfer (EFT)电子资金传送(转账),电子汇款Business-to-Business (B to B, B2B)商业对商业transaction 事务[处理],交易,会刊,学报Electronic Data Interchange (EDI)电子数据交换communications medium 通信媒体digital form 数字格式revenue 税收,收入,收益6.6Web 万维网medium(复media) 媒体sharing 共享desktop 台式,桌面desktop computer 台式计算机notebook computer 笔记本计算机pocket computer 袖珍计算机Personal Digital Assistant (PDA)个人数字助理mobile phone 移动电话Hyper-Text Markup Language (HTML)超文本标记语言Web page 万维网网页Web site 万维网网站Interactivity 交互性service-oriented 面向服务的Application Programming Interface (API)应用编程界面Asynchronous JavaScript and XML (AJAX) 异步Java过程语言和扩展的标记语言9.1database 数据库data element 数据元retrieval 检索,恢复magnetizable media 可磁化介质linkage 链接system software package 系统软件包database record 数据库记录operating system (OS) 操作系统search 搜索,查找probe 探查query 查询file-oriented system 面向文件的系统communications path 通信通道database management system (DBMS)数据库管理信息系统management information system (MIS)管理信息系统decision making 决策information flow 信息流user 用户9.3Structured Query Language (SQL)结构化查询语言thread scheduling 线程调度memory management 存储管理I/O management 输入/输出管理relational engine 关系引擎type system 类型系统buffer pool management 缓冲槽管理resource management 资源管理synchronization primitives 同步化原语deadlock 死锁background maintenance jobs 后台维护作业multitasking 多(重)任务作业Applications Program Interface (API)应用程序接口log 记录Storage Engine 存储引擎Tabular Data Stream (TDS) 表格数据流character strings 字符串textual data 文本数据User-Defined composite Types (UDTs)用户定义的组合类型Dynamic Management Views (DMVs)动态管理视图constraint 约束value added services 增值服务self-tuning 自调谐(节)digital media formats 数字媒体格式bit-stream 比特流storage backend 存储后端eXtensible Markup Language (XML)可扩展的标记语言spatial data type 空间数据类型unstructured data 非结构化数据semi-structured data 半结构化数据metadata 元数据backing up 备份,备用hierarchical data 层次型数据recursive query 递归查询9.4data warehouse 数据仓库information technology (IT) 信息技术decision support 决策支持operational data 操作数据platform 平台transaction 事务(处理)distributed system 分布式系统infrastructure 基础设施client 客户mass storage 大容量存储器,海量存储器data refresh 数据刷新information pool 信息库On-Line Analytical Processing联机(在线)分析处理技术iterative approach 迭代方法database recovery 数据库恢复9.5Enterprise Resource Planning (ERP)企业资源计划Customer Relationship Management (CRM)客户关系管理log 日志,(运行)记录,对数pattern 模式,图形(案),特性曲线Intelligence Quotient (IQ) 智商predictable 可预测的attribute 属性dataset 数据集subset 子集recursive 递归training process 训练过程root node 根节点leaf node 叶子节点algorithm 算法decision tree 决策树,判定树cluster 聚类,簇,群集association 关联,结合,协(学)会time series 时(间)序(列)prediction 预测churn analysis 周转分析Structured Query Language (SQL)结构化查询语言9.6online ordering 在线订货browser 浏览器peer-to-peer 对等的retrieval 检索E-Commerce 电子商务E-Business 电子企业script 脚本(文件),稿本,过程dynamic web page 动态web网页static web page 静态web网页hyperlink 超(级),链接form 表单,表格,窗体database query 数据库查询middleware 中间件CGI (Common Gateway Interface)公用网关接口API (Application Program Interface)应用程序接口PHP (Personal Home Page) 个人家庭主页ASP (Active Server Page) 现用服务器页,动态服务器主页11.1computer graphics (CG) 计算机图形(学)video game 视频游戏render 渲染three-dimensional computer graphics三维计算机图形scene 景物,景色,场景image 图像,影(映)像,成像photograph 照片medical imaging system 医疗成像系统monitor 监视器paint program 绘图程序model 模型computer-simulated world 计算机模拟世界11.2GUI (graphics user interface) 图形用户界面DTP (desktop publishing) 桌面出版resolution 分辨率image-setter 激光照排机paste-board 粘贴板HTML (hypertext markup language)超文本标记语言PDF (portable document format)可移植文档格式PDL (page description language)页面描述语言graphics software 图形软件WP(Word Processing) (文)字处理typescript 打印文稿(原稿)laser printer 激光打印机dpi (dots per inch) 每英寸点数lay out 排版Electronic Publishing 电子出版video 视频animation 动画hyperlink 超链接suite of software 软件套件11.4image processing 图像处理sensor 传感器acquisition 采集,获取illumination 光照digitization 数字化coordinate transformation 坐标变换motion blur 运动模糊tomography X线断层技术chromosome 染色体background 背景gray value 灰度值visual system 视觉系统multimedia 多媒体brightness 亮度contrast 对比度pixel 像素distortion 失真,畸变filter 滤波,过滤11.5bitmap 位图raster image 光栅图像decompress 解压gray-scale 灰度magic number 幻数LUT(look up table) 查找表file format 文件格式proprietary 所有人的,所有的,专利的TIFF (Tagged Image File Format)标记图像文件格式GIF (Graphics Interchange Format)图形交换格式index 索引RLE (Run-Length Encoding) 游程编码JPEG (Joint Photographic Experts Group)联合(静态)图像专家组第一组1.Primitive types 基本(数据)类型2. heuristics 启发式研究3.criteria 标准4.performance speed 运行速度5.the nature of the application 应用的性质6.vector quantization 矢量量化7.the preceding frames 之前帧8.consecutive frames 连续帧9.formula 公式10.inequality 不等式11.cumulative errors 累计错误12.JPEG(Joint Photographic Experts Group) 联合图像专家小组13.spatial position 空间位置14.matrix 矩阵15.binary array 二进制数组16. decompress 解压缩17. sophisticated 复杂的18. subunits 子单元第二组1.hybrid n.混合物adj.混合的2.backpropagation 反向传播3.fusions . 融合4.parameters 参数;系数5.optimized adj. 最佳化的6.fuzzy 模糊的;失真的7.conventional . 传统的;惯例的8.integrated. 综合的;完整的9.fuzzy logic 模糊逻辑10.perceptron . 感知器11.hierarchical 分层的;等级体系的putation 估计,计算13.coordinate 坐标;vt. 整合adj. 同等的vi. 协调)14.converges 聚合,会聚15. neurons 神经元16.bias 偏执量17.nonlinear function 非线性函数18.purelin 线性19.genetic algorithm 遗传算法20.simultaneous 同时发生的,同步的21.polygonal approximation algorithms多边形近似算法22.dynamic 动态的23.data fusion 数据融合24.robust 鲁棒的.强健的,坚定的第三组1.contemporary 当代的、现代的2.cryptography 密码学3.authentication 身份验证4.interdisciplinary 跨学科的5.designate vt. 指定;指派6.identical adj. 同一的;完全相同的7.interactive adj. 交互式的;相互作用的8.iterative(adj. 迭代的;重复的,反复的9.endeavor n.努力;尽力.10.integration n.集成;综合11.heterogeneous(adj. [化学] 多相的;异种的;[化学] 不均匀的;由不同成分形成的))12.interpretation(n. 解释;翻译;演出)13.validation(n. 确认;批准;生效)14.disciplines(n.纪律;训练;学科)15.identified(vt.鉴定;识别,辨认出,认出;认明;把…看成一样)16.interpretable(adj.可说明的;可解释的;可翻译的)17.scalable(adj.可测量的;可伸缩的;可攀登的)18.associations(联合;联想)19.transactionsn. 处理,[图情] 会报;汇报20.investigated(v. 调查;研究)21.versus(prep. 对;与...相对;对抗)22.unified(adj. 统一的;一致标准的)23.subsequent(adj. 后来的,随后的)24.violations[va??'le??nz]侵害,违反25.protocol ['pro?t?k??l]草案;协议26.vulnerabilities[v?ln?r?'b?l?t?z]脆弱点27.misuse [?m?s'ju?s]误用;滥用28.anomaly[?'nɑ?m?li]异常;反常29.captured?['k?pt??r]捕获;占领30.rationale基本原理;基础理论31.clustering['kl?st?r??]聚类;群32.thrust刺;推力;要旨第四租1.Taxonomy 分类标准2.by virtue of 凭借,依靠第五组1.Blend 混合2.Render 渲染3.Defeat 使失效,弱化4.Pleasing 令人满意的5.artifact6.state-of-the-art 一流的,先进的,到目前为止最好的7.Formulation配方;构想,规划;公式化8.Hierarchical 分层的9.Potent有效的,强有力的;有权势的;烈性的;有说服力的10.Temporal暂存的11.Quadratically 二次12.Homogeneous同性质的,同类的13.Shades 阴影14.Attained 达到;获得15.Problematic成问题的,有疑问的,不确定的16.fine-tuned 对…进行微调;细调17.identical images 相同的图像18.shading effects阴影效应19.Generic类的,属性的;一般的20.Opaquely不透明地21.Fringe边缘的,外围的第六组1.extraction 取出;抽出;拔出2.Binarization 二值化3.retrieval 检索4.dissemination 宣传;散播;传染5.integrated? 综合的;完整的;互相协调的)6.delimiters 分隔符7.Deviation 偏离8.feeding into 流入,输入9.loose-leaf 活页式的10.with respect to 关于11.isolate 隔离,孤立12.table of contents entries 目录项13.syntactic 句法的14.appropriate adj.适当的;相称的15.meta-data(n.元数据,16.heterogeneous adj.异种的;异质的第七组Disassemble 反汇编。

大学生专业英语词汇总结

大学生专业英语词汇总结

大学生专业英语词汇总结随着全球化时代的到来,跨国公司、国际组织以及各种国际活动的频繁出现,英语作为国际交流的基本语言,成为了每一个大学生必备的技能之一。

作为大学英语的学习者,熟练掌握专业英语词汇不仅是提升英语水平的必要条件,也是迈向专业领域的重要基础。

下面是本文为大家总结的大学生专业英语词汇:一、商务英语1. revenue –收入\n2. profit –利润\n3. sales –销售额\n4. market –市场\n5. brand –品牌\n6. strategy –策略\n7. investment –投资\n8. competition –竞争\n9. target market –目标市场\n10. advertising –广告二、计算机科学1. algorithm –算法\n2. database –数据库\n3. programming –编程\n4. software –软件\n5. hardware –硬件\n6. network –网络\n7. code –代码\n8. operating system –操作系统\n9. debugging –调试\n10. user interface –用户界面三、金融学1. interest rate –利率\n2. stock –股票\n3. bond –债券\n4. investment –投资\n5. risk –风险\n6. liquidity –流动性\n7. asset –资产\n8. liability –负债\n9. hedge fund –对冲基金\n10. derivatives –衍生品四、法律1. contract –合同\n2. litigation –诉讼\n3. liability –责任\n4. precedent –先例\n5. intellectual property –知识产权\n6. arbitration –仲裁\n7. legal system –法律体系\n8. judgment –判决\n9. plaintiff –原告\n10. defendant –被告五、医学1. diagnosis –诊断\n2. treatment –治疗\n3. surgery –手术\n4. medication –药物\n5. patient –病人\n6. symptom –症状\n7. disease –疾病\n8. surgery –外科学\n9. anatomy –解剖学\n10. physiology –生理学六、教育学1. curriculum –课程\n2. pedagogy –教学法\n3. assessment –评估\n4. classroom management –课堂管理\n5. educational psychology –教育心理学\n6. learning outcomes –学习成果\n7. special education –特殊教育\n8. differentiated instruction –差异化教学\n9. educational research –教育研究\n10. teaching strategies –教学策略七、国际关系1. sovereignty –主权\n2. diplomacy –外交\n3. globalization –全球化\n4. non-governmental organization (NGO) –非政府组织\n5. international law –国际法\n6. foreign policy –外交政策\n7. human rights –人权\n8. conflict resolution –冲突解决\n9. international trade –国际贸易\n10. international governance –国际治理八、建筑设计1. blueprint –蓝图\n2. architecture –建筑学\n3. building materials –建筑材料\n4. interior design –室内设计\n5.construction –建筑工程\n6. sustainable design –可持续设计\n7. building code –建筑规范\n8. structural engineering –结构工程\n9. landscape architecture –景观设计\n10. urban planning –城市规划以上是本文总结的大学生专业英语词汇,涵盖了商务、计算机科学、金融学、法律、医学、教育学、国际关系、建筑设计等多个专业领域。

计算机专业英语单词中英文对照

计算机专业英语单词中英文对照

application software应用软件basic application基本应用软件communication device通信设备compact disc(CD)光盘computer competency计算机能力connectivity连通性data数据database file数据库文件desktop computer台式计算机device driver磁盘驱动程序digital versatile disc(DVD)数字多用途光盘digital video disc(DVD)数字多用途光盘document file文档文件end user终端用户floppy disk软盘handheld computer手持计算机hard disk硬盘hardware硬件high definition高清information信息information system信息系统information technology信息技术input device输入设备Internet因特网keyboard键盘mainframe computer大型机memory内存microcomputer微型机microprocessor微处理器midrange computer中型机minicomputer小型计算机modem调制解调器monitor监视器mouse鼠标network网络notebook computer笔记本电脑operating system操作系统optical disk光盘output device输出设备palm computer掌上电脑peoplepersonal digital assistant(PDA)个人数字助理presentation file演示文稿primary storage主存printer打印机procedure规程program程序random access memory随机存储器secondary storage device辅助存储器software软件specialized application专门应用软件supercomputer巨型机system software系统软件system unit系统单元tablet PC平板电脑utility实用程序wireless revolution无线革命worksheet file工作表address 地址Advanced Research Project Agency Network (ARPANET) 阿帕网applets小程序attachment附件auction house site拍卖行网站browser浏览器business-to-business (B2B)企业对企业电子商务business-to-consumer (B2C) 企业对消费者电子商务cable电缆carder信用卡持有者Center for European Nuclear Research(CERN)欧洲核研究中心computer virus计算机病毒consumer-to-consumer(C2C)消费者对消费者电子商务dial-up拨号digital cash数字货币directory search目录搜索domain name域名downloading下载DSL数字用户线路e-commerce电子商务e-learning电子学习,数字化学习electronic commerce电子商务e-mail电子邮件file transfer protocol (FTP)文件传输协议electronic mail电子邮件filter过滤器friend朋友header标题hit记录hyperlink超链接Hypertext Markup Language (HTML)超文本标识语言instant messaging (IM)即时通信Internet因特网Internet security suite网络安全套件Internet service provider (ISP)网络服务提供商Javakeyword search关键词搜索link链接location定位message讯息,信息metasearch engine元搜索引擎national service provider国家级服务提供商online在线online banking网上银行online shopping网上购物online stock trading网上股票交易person-to-person auction site人与人的拍卖网站plug-in插件protocol协议search engine搜索引擎search service搜索服务器signature line签名档social networking社会网络spam垃圾邮件spam blocker垃圾邮件拦截器specialized search engine专门搜索引擎spider蜘蛛程序subject主题surf上网top-level domain (TLD)顶级域名uniform resource locator (URL)统一资源定位器universal instant messenger普遍即时通信器uploading上传Web网络Web auction网上拍卖Web-based application网络基础应用Web-based services网络基础服务Webmaster网络管理员Web page网页Web utility网络工具wireless modem无线调制解调器wireless service provider无线服务提供商analytical graph分析图表application software应用软件Autocontent Wizard内容提示向导basic applications基础应用软件bulleted list项目符号列表business suite商业套装软件button按钮cell单元格character effect字符效果chart图表column列computer trainer计算机培训员contextual tab上下文关联标签database数据库database management system (DBMS)数据库管理系统database manager数据库管理员design template设计模板dialog box对话框document文档editing编辑field字段find and replace查找和替换font字体font size字号form样式format格式formula公式function函数galleries图库grammar checker语法检查器graphical user interface (GUI)图形用户界面home software家庭软件home suite家庭套装软件icons图标integrated package集成软件包label标签master slide母版menu菜单menu bar菜单栏numbered list编号列表numeric entry数值型输入personal software个人软件personal suite个人套装软件pointer指针presentation graphic图形演示文稿productivity suite生产套装软件query查询range范围recalculation重新计算record记录relational database关系数据库report报表ribbons功能区、格式栏row行sheet工作表slide幻灯片software suite软件套装sort排序specialized applications专用应用程序specialized suite专用套装软件speech recognition语音识别spelling checker拼写检查器spreadsheet电子表格system software系统软件table表格text entry文本输入thesaurus [θisɔ:rəs]分类词汇集toolbar工具栏user interface用户界面utility suite实用套装软件what-if analysis假设分析window窗口word processor文字处理软件word wrap自动换行workbook file工作簿worksheet工作表animation动画artificial intelligence (AI)人工智能artificial reality人工现实audio editing software音频编辑软件bitmap image位图blog博客button按钮clip art剪贴画desktop publisher桌面发布desktop publishing program桌面印刷系统软件drawing program绘图程序expert systems专家系统Flash动画fuzzy logic模糊逻辑graphical map框图graphics suite集成图HTML editors HTML编辑器illustration program绘图程序image editors图像编辑器image gallery图库immersive experience沉浸式体验industrial robots工业机器人interactivity交互性knowledge bases知识库knowledge-based system知识库系统link链接mobile robot移动式遥控装置morphing渐变multimedia多媒体multimedia authoring programs多媒体编辑程序page layout program页面布局程序perception systems robot感知系统机器人photo editors图像编辑器pixel[piksəl]像素raster image光栅图像robot机器人robotics机器人学stock photographs照片库story board故事板,节目顺序单vector[vektə]矢量vector illustration矢量图vector image矢量图像video editing software视频编辑软件virtual environments虚拟环境virtual reality虚拟现实virtual reality modeling language (VRML)虚拟现实建模语言virtual reality wall虚拟现实墙VR虚拟现实Web authoring网络编程Web authoring program网络编辑程序Web log网络日志Web page editor网页编辑器Add Printer Wizard添加打印机向导antivirus program反病毒程序Backup备份backup program备份程序Boot Campbooting启动、引导cold boot冷启动computer support specialist计算机支持专家Dashboard Widgets仪表盘desktop桌面desktop operating system桌面操作系统device driver设备驱动程序diagnostic program诊断程序dialog box对话框Disk Cleanup磁盘清理Disk Defragmenter磁盘碎片整理器driver驱动器embedded operating systems嵌入式操作系统file文件file compression program文件压缩程序folder文件夹fragmented碎片化graphical user interface (GUI)图形用户界面Help帮助icon图标language translator语言编译器Leopard[lepəd]雪豹操作系统LinuxMac OS Mac操作系统Mac OS X menu菜单multitasking多任务处理network operating systems(NOS)网络操作系统network server网络服务器One Button Checkup一键修复operating system操作系统platform平台pointer 指针sectors[sektə]扇区software environment软件环境Spotlight热点stand-alone operating system独立操作系统system software系统软件Tiger老虎操作系统tracks磁道troubleshooting program故障检修程序uninstall program卸载程序UNIXuser interface用户界面utility实用程序utility suite实用套装软件virus[vaiərəs]病毒warm boot热启动window窗口Windows视窗操作系统Windows Update Windows更新Windows VistaWindows XPAC adapter交流适配器accelerated graphics port(AGP)图形加速端口analog 模拟arithmetic-logic unit(ALU)算术逻辑单元arithmetic operation算术运算SCII美国信息交换标准码binary coding scheme二进制编码制bit位bus总线bus line总线线路bus width总线线宽byte字节cable电缆cache memory高速缓存carrier package 封装物central processing unit (CPU)中央处理器chip芯片clock speed时钟速度complementary metal-oxide semiconductor互补金属氧化物半导体computer technician计算机工程师control unit控制单元coprocessor协处理器desktop system unit桌面系统单元digital数字的dual-core chips双核芯片EBCDIC扩展二进制编码的十进制交换码expansion bus扩展总线expansion card扩展卡expansion slot扩展槽FireWire port火线接口flash memory闪存graphics card图形适配卡graphics coprocessor图形协处理器handheld computer system unit 手持计算机系统单元industry standard architecture(ISA)工业标准结构Infrared Data Association(IrDA) 红外数据协会integrated circuit集成电路laptop computer膝式计算机microprocessor微处理器motherboard主板musical instrument digital interface(MIDI)乐器数字接口network adapter card网络适配卡network interface card(NIC)网络接口卡notebook system unit笔记本parallel ports并行端口parallel processing并行处理PC card个人计算机插卡PCI Express(PCIe)peripheral component interconnect (PCI)外围部件互联personal digital assistant (PDA) 个人数字助理active-matrix monitor有源矩阵显示器bar code条形码bar code reader条形码阅读器bar code scanner条形码扫描仪cathode-ray tube monitor (CRT)阴极射线管显示器clarity清晰度combination key组合键cordless mouse无线鼠标data projector数据投影仪digital camera数码照相机digital media player数字媒体播放器digital music player数码音乐播放器digital video camera数码影像摄录机display screen显示屏dot-matrix printer点阵式打印机dot pitch点距dots-per-inch (dpi)点/每英寸dual-scan monitor双向扫描显示器dumb terminal非智能终端e-book电子图书ergonomic keyboard人体工程学键盘fax machine传真机flat-panel monitor平面显示器flatbed scanner平板扫描仪flexible keyboard软键盘handwriting recognition software手写体识别软件headphones耳机high-definition television (HDTV)高清电视ink-jet printer喷墨打印机intelligent terminal智能终端internet telephone网络电话internet telephony网络电话IP telephony IP电话joystick游戏杆keyboard键盘laser printer激光打印机light pen光笔liquid crystal display (LCD)液晶显示器magnetic card reader磁卡阅读器magnetic-ink character recognition (MICR)磁性墨水字符识别mechanical mouse机械鼠标monitor显示器mouse鼠标mouse pointer鼠标指针multifunction device (MFD)多功能设备network terminal网络终端numeric keypad数字小键盘optical-character recognition (OCR)光学字符识别optical-mark recognition (OMR)光学标记识别optical mouse光电鼠标optical scanner光电扫描仪passive-matrix monitor无源矩阵显示器PDA keyboard PDA键盘personal laser printer个人激光打印机photo printer照片打印机picture elements 有效像素pixel像素pixel pitch像素间距platform scanner平板扫描仪plotter绘图仪pointing stick触控点portable printer便携式打印机portable scanner便携式扫描仪printer打印机radio frequency card reader (RFID)射频卡阅读器radio frequency identification射频识别refresh rate刷新率resolution分辨率roller ball滚动球shared laser printer共享激光打印机speakers扬声器stylus[stailəs]输入笔technical writer技术文档编写员telephony[tilefəni]电话学terminal终端thermal printer[θə:məl]热敏打印机thin client瘦客户端thin film transistor monitor薄膜晶体管显示器toggle key切换键touch pad触控板touch screen触摸屏trackball轨迹球traditional keyboard传统键盘Universal Product Code (UPC)统一产品编码voice recognition system (VoIP)语音识别系统Voice over IP IP语音wand reader条形码阅读器WebCam摄像头wheel button滚动键wireless keyboard无线键盘wireless mouse无线鼠标access speed存取速度Blu-Ray(BD)蓝光capacity容量CD (compact disc)光盘CD-R (CD-recordable)可录式CDCD-ROM (compact disc-read only memory)只读光盘CD-ROM jukebox点唱机CD-RW (compact disc rewritable)可重写CD cylinder[silində]柱面density密度direct access直接存取disk caching磁盘缓存DVD(digital versatile disc or digital video disc)DVD player DVD播放器DVD-R(DVD recordable)可录式DVD DVD+R(DVD recordable)可录式DVDDVD-RAM(DVD random-access memory) DVD随机存取器DVD-ROM(DVD random-read-only memory) DVD只读存储器DVD-ROM jukebox DVD-RW (DVD rewritable)可重写DVD DVD+RW (DVD rewritable)可重写DVDenterprise storage system企业存储系统erasable optical disk可擦光盘file compression文件压缩file decompression文件解压缩file server文件服务器flash memory card闪存卡floppy disk软盘floppy disk cartridge软盘盒floppy disk drive (FDD)软磁盘驱动器hard disk硬盘hard-disk cartridge硬盘盒hard-disk pack硬盘组HD DVD(high-definition DVD)高清DVD head crash磁头碰撞hi def(high definition)高清high-capacity disk高容量磁盘internal hard disk内置硬盘Internet hard drive网络硬盘驱动器label标签land(凸)平地magnetic tape磁带magnetic tape reel磁带盒magnetic tape streamer磁带条mass storage大容量存储器mass storage driver大容量存储器驱动media多媒体optical disk光盘optical disk driver光盘驱动器organizational Internet storage组织性网络存储PC Card hard disk PC卡硬盘pit凹primary storage主存RAID system磁盘阵列系统redundant array of inexpensive disks(RAID)廉价磁盘冗余阵列secondary storage辅存secondary storage driver辅存驱动器sector扇区sequential access顺序存取Shutter快门software engineer软件工程师solid-state storage固态存储器storage devices存储装置tape cartridge盒式磁带track轨道USB drive USB驱动器write-protection notch写入保护缺口。

计算机专业英语单词

计算机专业英语单词

计算机专业英语词汇指与计算机硬件、软件、⽹络等多⽅⾯有关的英语词汇,主要包括硬件基础、计算机系统维护、计算机⽹络基础、软件、程序设计语⾔、计算机⽹络技术、IT职场英语等词汇。

下⾯为⼤家带来计算机专业英语单词,快来看看吧。

计算机专业英语单词1-10 第⼀单元 Processor 处理机 Primary storage 主存储器 bit 位 hearsay 传说 CPU 中英处理器 control unit 控制部件 arithmetic and logic unit 算术逻辑部件 integral parts 不可缺的部件 tape and disk磁带和磁盘 DRAM动态随机存储器 SRAM静态随机存储器 Register 寄存器 a state of the art ⽬前⼯艺⽔平 chip 芯⽚ VDT 视频显⽰终端 secondary storage 辅助存储器 at a premium⾮常珍贵 reallocate 重新分配 capacity 容量 coaxial cable 同轴电缆 program and data 程序和数据 instruction 指令 location 单元 RAM随机存取存储器 Hardwired 硬连线 EPROM可擦可编程只读存储器 Cache ⾼速缓存 Throughput 吞吐量 read-mostly 以读为主 EEPROM电可擦编程ROM Nonvolatility ⾮易失性 Updatable 可修改的 in place 在适当的 地⽅ semiconductor 半导体 flash memory 闪存 functionality 功能 byte-level 字节级 be referred to as 称作 virtually 事实上 house 存放 expansion 扩充 peripheral 外围的 slot 插槽 power supply 电源 system board 系统板 storage bay 存储机架 floppy 软盘 第⼆单元 optical laser disk 光盘 laser beam激光束 score 刻痕 microscopic pit 微⼩的`凹点 light-sensitive 光敏感的 deflect 偏转 access arm存取臂 inviting 令⼈⼼动的 fluctuation 波动 emerge 显现 stabilize 稳定 gigabyte 千兆字节 cd 光盘 magneto-optical disk 磁光盘 entrepreneur 企业家 video 视频的 拓展阅读: A (Active-matrix)主动矩阵 (Adapter cards)适配卡 (Advanced application)⾼级应⽤ (Analytical graph)分析图表 (Analyze)分析 (Animations)动画 (Application software) 应⽤软件 (Arithmetic operations)算术运算 (Audio-output device)⾳频输出设备 (Access time)存取时间 (access)存取 (accuracy)准确性 (ad network cookies)⼴告⽹络信息记录软件 (administrator)管理员 (Add-ons)插件 (Address)地址 (Agents)代理 (Analog signals)模拟信号 (Applets)程序 (Asynchronous communications port)异步通信端⼝ (Attachment)附件 AGP(accelerated graphics port)加速图形接⼝ ALU (arithmetic-logic unit)算术逻辑单元 AAT(Average Access Time) 平均存取时间 ACL(Access Control Lists)访问控制表 ACK(acknowledgement character)确认字符 ACPI (Advanced Configuration and Power Interface)⾼级配置和电源接⼝ ADC(Analog to Digital Converter)模数转换器 ADSL(Asymmetric Digital Subscriber Line)⾮对称⽤户数字线路 ADT(Abstract Data Type)抽象数据类型 AGP(Accelerated Graphics Port)图形加速端⼝ AI(Artif icial Intelligence)⼈⼯智能 AIFF(Audio Image File Format)声⾳图像⽂件格式 ALU(Arithmetic Logical Unit) 算术逻辑单元 AM(Amplitude Modulation)调幅 ANN(Artificial Neural Network)⼈⼯神经⽹络 ANSI(American National Standard Institute)美国国家标准协会 API(Application Programming Interface)应⽤程序设计接⼝ APPN(Advanced Peer-to-Peer Network)⾼级对等⽹络 ARP(Address Resolution Protocol)地址分辨/ 转换协议 ARPG(Action Role Playing Game)动作⾓⾊扮演游戏 ASCII (American Standard Code for Information Interchange)美国信息交换标准代码 ASP(Active Server Page)活动服务器⽹页 ASP(Application Service Provider)应⽤服务提供商 AST(Average Seek Time)平均访问时间 ATM(asynchronous transfer mode)异步传输模式 ATR (Automatic Target Recognition) ⾃动⽬标识别 AVI (Audio Video Interleaved)声⾳视频接⼝ B (Bar code)条形码 (Bar code reader)条形码读卡器 (Basic application)基础程序 (Binary coding schemes)⼆进制编码⽅案 (Binary system)⼆进制系统 (Bit)⽐特 (Browser)浏览器 (Bus line)总线 (Backup tape cartridge units)备份磁带盒单元 (Bandwidth)带宽 (Bluetooth)蓝⽛ (Broadband)宽带 (Bus)总线 B2B(Busines s to Business)商业机构对商业机构的电⼦商务 B2C(Business to Consumer)商业机构对消费者的电⼦商务 BBS(bulletin board system)电⼦公告牌系统 BER(Bit Error Rate)误码率 BFS (Breadth First Search) ⼴度优先搜索 BGP(Border Gateway Protocol)边缘⽹关协议 BIOS(basic input/output system)基本输⼊输出系统 BISDN(Broadband- Integrated Services Digital Network)宽带综合业务数字⽹ BLU(Basic Link Unit)基本链路单元 BOF(Beginning Of File)⽂件开头 BPS(Bits Per Second)每秒⽐特数 BRI(Basic Rate Interface)基本速率接⼝ BSP(Byte Stream Protocol)字节流协议 BSS(Broadband Switching System)宽带交换系统 C (Cables)连线 (Cell)单元箱 (Chain printer)链式打印机 (Character and recognition device)字符标识识别设备 (Chart)图表 (Chassis)⽀架 (Chip)芯⽚ (Clarity)清晰度 (Closed architecture)封闭式体系结构 (Column)列 (Combination key)结合键 (computer competency)计算机能⼒ (connectivity)连接,结点 (Continuous-speech recognition system)连续语⾔识别系统 (Control unit)操纵单元 (Cordless or wireless mouse)⽆线⿏标 (Cable modems)有线调制解调器 (Channel)信道 (Chat group)谈话群组 (Client)客户端 (Coaxial cable)同轴电缆 (cold site)冷⽹站 (Commerce servers)商业服务器 (Communication channel)信道 (Communication systems)信息系统 CD(Compact disc)光盘 (computer abuse amendments act of 19941994)计算机滥⽤法案 (computer crime)计算机犯罪 (computer ethics)计算机道德 (computer fraud and abuse act of 1986)计算机欺诈和滥⽤法案 (computer matching and privacy protection act of 1988)计算机查找和隐私保护法案 (Computer network)计算机⽹络 (computer support specialist)计算机⽀持专家 (computer technician)计算机技术⼈员 (computer trainer)计算机教师 (Connection device)连接设备 (Connectivity)连接 (cookies-cutter programs)信息记录截取程序 (cookies)信息记录程序 (cracker)解密⾼⼿ (Cyber cash)电⼦货币 (Cyberspace)计算机空间 (chart)图表 (closed architecture )封闭式体系结构 C2C(Consumer-to-consumer)个⼈对个⼈ CPU (central processing unit)中央处理器 CISC (complex instruction set computer)复杂指令集计算机 CRT( cathode-ray tube)阴极射线管 AD(Computer Aided Design)计算机辅助设计 CAE(Computer-Aided Engineering)计算机辅助⼯程 CAI(Computer Aided Instruction)计算机辅助教学 CAM(Computer Aided Manufacturing)计算机辅助管理 CASE(Computer Assisted Software Engineering)计算机辅助软件⼯程 CAT(Computer Aided Test)计算机辅助测试 CATV(Community Antenna Television)有线电视 CB(control bus)控制总线 CCP(Communication Control Procrssor)通信控制处理机 CD(Compact Disc)压缩光盘,只读光盘 CD-R(Compact Disc-Recordable)可录光盘,只写⼀次的光盘 CDFS(Compact Disk File System)密集磁盘⽂件系统 CDMA(Code Division Multiple Access)码分多路访问 CD-MO(Compact Disc-Magneto Optical)磁光式光盘 CD-ROM(compact disc read-only memory)只读光盘 CD-RW(compact disc rewritable)可读写光盘 CGA(Color Graphics Adapter)彩⾊显⽰器 CGI(common gateway interface)公共⽹关接⼝ CI(Computational Intelligence)计算智能 CISC(Complex Instruction Set Computer) 复杂指令集计算机 CMOS(Complementary Metal Oxide Semiconductor)互补⾦属氧化物半导体存储器 COM(Component object model)组件对象模型 CORBA(Common Object Request Broker Architecture)公共对象请求代理结构 CPU(central proces sing unit)中央处理单元 CRC(cyclical redundancy check)循环冗余校验码 CRM(Client Relation Management)客户关系管理 CRT(Cathode-Ray Tube)阴极射线管,显⽰器 CSMA(Carrier Sense Multi -Access)载波侦听多路访问 CSU(Channel Service Unit)信道服务单元 CU(Control Unit)控制单元 D DB(Database)数据库 (database files)数据库⽂件 (Database manager)数据库管理 DBMS(Database manager system)数据库管理系统 (Data bus)数据总线 (Data projector)数码放映机 (Desktop system unit)台式电脑系统单元 (Destination file)⽬标⽂件 (Digital cameras)数码照相机 (Digital notebooks)数字笔记本 (Digital video camera)数码摄影机 (Discrete-speech recognition system)不连续语⾔识别系统 (Document)⽂档 (document files)⽂档⽂件 (Dot-matrix printer)点矩阵式打印机 (Dual-scan monitor)双向扫描显⽰器 (Dumb terminal)⾮智能终端 (data security)数据安全 (Data transmission specifications)数据传输说明 (database administrator)数据库管理员 (Data play)数字播放器 (Demodulation)解调 (denial of service attack)拒绝服务攻击 (Dial-up service)拨号服务 (Digital cash)数字现⾦ (Digital signals)数字信号 (Digital subscriber line)数字⽤户线路 (Digital versatile disc)数字化通⽤磁盘 (Digital video disc)数字化视频光盘 (Direct access)直接存取 (Directory search)⽬录搜索 (disaster recovery plan)灾难恢复计划 (Disk caching)磁盘驱动器⾼速缓存 (Diskette)磁盘 (Disk)磁碟 (Distributed data processing system)分部数据处理系统 (Distributed processing)分布处理 (Domain code)域代码 (Downloading)下载 DVD(Digital Versatile Disc)数字多功能光盘 DVD-R(DVD-Recordable)可写DVD DVD-RAM(DVD- Random Access Memory)DVD随机存取器 DNS(Domain name system)域名服务器 DAC(Digital to Analogue Converter)数模转换器 DAO(Data Access Object)数据访问对象 DAP(Directory Acces s Protocol)⽬录访问协议 DBMS(Database Management System)数据库管理系统 DCE(data communication equipment)数据通信设备 DCE(Distributed Computing Environment)分布式计算环境 DCOM(Distributed COM)分布式组件对象模型 DDB(Distributed DataBase)分布式数据库 DDE(Dynamic Data Exchange)动态数据交换 DDI(Device Driver Interface)设备驱动程序接⼝ DDK(Driver Development Kit)驱动程序开发⼯具包 DDN(Data Digital Network)数据数字⽹ DEC(Digital Equipment Corporation)数字设备公司 DES(Data Encryption Standard)数据加密标准 DFS(Depth First Search) 深度优先搜索 DFS(Distributed File System)分布式⽂件系统 DHCP(Dynamic Host Configuration Protocol)动态主机配置协议 DIB(Dual Independent Bus)双独⽴总线 DIC(Digital Image Control)数字图像控制 DLC(Data Link Control)数据链路控制 DLL(Dynamic Link Library)动态链接库 DLT(Data Link Terminal)数据链路终端 DMA(Direct Memory Access)直接内存访问 DMSP(Distributed Mail System Protocol)分布式电⼦邮件系统协议 DNS(Domain Name System)域名系统 DOM(Document Object Mode)⽂档对象模型 DOS(Disk Operation System)磁盘操作系统 DQDB(Distributed Queue Dual Bus)分布式队列双总线 DRAM(Dynamic Random Access Memory)动态随机存取存储器 DSD(Direct Stream Digital)直接数字信号流 DSL(Digital Subscriber Line)数字⽤户线路 DSM(Distributed Shared Memory)分布式共享内存 DSP(Digital Signal Processing)数字信号处理 DTE(Data Terminal Equipment)数据终端设备 DVD(Digital Versatile Disc)数字多功能盘 DVD-ROM(DVD-Read Only Memory)计算机⽤只读光盘 DVI(Digital Video Interactive)数字视频交互 E (e-book)电⼦阅读器 (Expansion cards)扩展卡 (end user)终端⽤户 (e-cash)电⼦现⾦ (e-commerce)电⼦商务 (electronic cash)电⼦现⾦ (electronic commerce)电⼦商务 (electronic communications privacy act of1986)电⼦通信隐私法案 (encrypting)加密术 (energy star)能源之星 (Enterprise computing)企业计算化 (environment)环境 (Erasable optical disks)可擦除式光盘 (ergonomics)⼈类⼯程学 (ethics)道德规范 (External modem)外置调制解调器 (extranet)企业外部⽹ EC(Embedded Controller)嵌⼊式控制器 EDIF(Electronic Data Interchange Format)电⼦数据交换格式 EEPROM(Erasable and Electrically Programmable ROM)电擦除可编程只读存储器 EGA(Enhanced Graphics Adapter)彩⾊显⽰器,分辨率为 640×350 ,可以显⽰ 16 种颜⾊ EGP(External Gateway Protocol)外部⽹关协议 EISA(Extended Industry Standard Architecture)增强⼯业标准结构 EMS(Expanded Memory Specification)扩充存储器规范 EPH(Electronic payment Handler)电⼦⽀付处理系统 EPROM(Erasable Programmable ROM)可擦除可编程只读存储器 ERP(Enterprise Resource Planning)企业资源计划 ETM(ExTended Memory)扩展存储器 F (Fax machine)传真机 (Field)域 (Find)搜索 (FireWire port)⽕线端⼝ (Firmware)固件 (Flash RAM)闪存 (Flatbed scanner)台式扫描器 (Flat-panel monitor)纯平显⽰器 (floppy disk)软盘 (Formatting toolbar)格式化⼯具条 (Formula)公式 (Forum)论坛 (Function)函数 (fair credit reporting act of 1970)公平信⽤报告法案 (Fiber-optic cable)光纤电缆 (File compression)⽂件压缩 (File decompression)⽂件解压缩 (filter)过滤 (firewall)防⽕墙 (firewall)防⽕墙 (Fixed disk)固定硬盘 (Flash memory)闪存 (Flexible disk)可折叠磁盘 (Floppies)磁盘 (Floppy-disk cartridge)磁盘盒 (Formatting)格式化 (freedom of information act of 1970)信息⾃由法案 (frequency)频率 (frustrated)受挫折 (Full-duplex communication)全双通通信 FAT(File Allocation Table)⽂件分配表 FCB(File Control Block)⽂件控制块 FCFS(First Come First Service)先到先服务 FCS(Frame Check Sequence)帧校验序列 FDD(Floppy Disk Device)软盘驱动器 FDDI(Fiber-optic Data Distribution Inter face)光纤数据分布接⼝ FDM(Frequency-Division Multiplexing)频分多路 FDMA(Frequency Division Multiple Address)频分多址 FEC(Forward Error Correction) 前向纠错 FEK(File Encryption Key)⽂件密钥 FEP(Front Ef fect Processor)前端处理机 FET(Field Effect Transistor)场效应晶体管 FIFO(First In First Out)先进先出 FM(Frequency Modulation)频率调制 FPU(Float Point Unit)浮点部件 FRC(Frame Rate Control)帧频控制 FTAM(File Transfer Access and Management)⽂件传输访问和管理 FTP(File Transfer Protocol)⽂件传输协议 G (General-purpose application)通⽤运⽤程序 (Gigahertz)千兆赫 (Graphic tablet)绘图板 (green pc)绿⾊个⼈计算机 (Group by) 排序 GAL(General Array Logic)通⽤逻辑阵列 GCR(Group-Coded Recording)成组编码记录 GDI(Graphics Device Interface)图形设备接⼝ GIF(Graphics Interchange Format)⼀种图⽚⽂件格式,图形转换格式 GIS(Geographic Information System)地理信息系统 GPI(Graphical Programming Interface)图形编程接⼝ GPIB(General Purpose Interface Bus)通⽤接⼝总线 GPS(Global Positioning System)全球定位系统 GSX(Graphics System Extension)图形系统扩展 GUI(Graphical User Interface)图形⽤户接⼝ H (handheld computer)⼿提电脑 (Hard copy)硬拷贝 (hard disk)硬盘 (hardware)硬件 (Help)帮助 (Host computer)主机 (Home page)主页 (Hyperlink)超链接 (hacker)⿊客 (Half-duplex communication)半双通通信 (Hard-disk cartridge)硬盘盒 (Hard-disk pack)硬盘组 (Head crash)磁头碰撞 (header)标题 (help desk specialist)帮助办公专家 (helper applications)帮助软件 (Hierarchical network)层次型⽹络 (history file)历史⽂件 (hits)匹配记录 (horizontal portal)横向⽤户 (hot site)热⽹站 (Hybrid network)混合⽹络 HPSB (high performance serial bus)⾼性能串⾏总线 HDTV(high-definition television)⾼清晰度电视 HDC(Hard Disk Control)硬盘控制器 HDD(Hard Disk Drive)硬盘驱动器 HDLC(High-level Data Link Control)⾼级数据链路控制 HEX(HEXadecimal)⼗六进制 HPFS(High Performance File System)⾼性能⽂件系统 HPSB(High Performance Serial Bus)⾼性能串⾏总线 HTML(Hyper Text Markup Language)超⽂本标记语⾔ HTTP(Hyper Text Transport Protocol)超⽂本传输协议 I (Image capturing device)图像获取设备 IT(information technology)信息技术 (Ink-jet printer)墨⽔喷射印刷机 (Integrated package)综合性组件 (Intelligent termina)l智能终端设备 (Intergrated circuit)集成电路 (implements )实现接⼝ (Interface cards)接⼝卡 (Internal modem)内部调制解调器 (internet telephony)⽹络电话 (internet terminal)互联⽹终端 (Identification)识别 (i-drive)⽹络硬盘驱动器 (illusion of anonymity)匿名幻想 (index search)索引搜索 (information pushers)信息推送器 (initializing )初始化 (instant messaging)计时信息 (internal hard disk)内置硬盘 (Internet hard drive) ⽹络硬盘驱动器 (intranet)企业内部⽹ ISA (industry standard architecture)⼯业标准结构体系 IRC(internet relay chat)互联⽹多线交谈 IAC(Inter-Application Communications)应⽤间通信 IC(Integrated Circuit)集成电路 ICMP(Internet Control Mes sage Protocol)因特⽹控制消息协议 ICP(Internet Content Provider)因特⽹内容服务提供商,是 ISP中提供信息服务的⼀种机构 IDC(International Development Center)国际开发中⼼ IDE(Integrated Development Environment)集成开发环境 IDL(Interface Definition Language)接⼝定义语⾔ IEEE(Institute of Electrical and Electronics Engineering)电⼦电器⼯程师协会 IGP(Interior Gateway Protocol)内部⽹关协议 IIS(Internet Information Service)因特⽹信息服务 IP(Internet Protocol)因特⽹协议 IPC(Inter-Process Communication)进程间通信 IPSE(Integrated Project Support Environments)集成⼯程⽀持环境 IPX(Internet Packer Exchitecture)互联⽹报⽂分组交换 ISA(Industry Standard Architecture)⼯业标准结构,是 IBM PC/ XT总线标准 ISDN(Integrated Service Digital Network)综合业务数字⽹ ISO(International Standard Organization)国际标准化组织 ISP(Internet Service Provider)因特⽹服务提供者 ITU(International Telecom Union)国际电信联盟 J (joystick)操纵杆 JDBC(Java Database Connectivity) J ava数据库互联 JPEG(Joint Photographic Experts Group)联合图⽚专家组 JSP(Java Server Page) Java 服务器页⾯技术 JVM(Java Virtual Machine)Java虚拟机 K (keyword search)关键字搜索 KB(Kilobyte)千字节 KBPS(Kilobits Per Second)每秒千⽐特 KMS(Knowledge Management System)知识管理系统 L (laser printer)激光打印机 (Layout files)版式⽂件 (Light pen)光笔 (Locate)定位 (Logical operations)逻辑运算 (Lands)凸⾯ (Line of sight communication)视影通信 (Low bandwidth)低带宽 (lurking)潜伏 LCD (liquid crystal display monitor)液晶显⽰器 LAN(Local Area Network)局域⽹ LBA(Logical Block Addressing)逻辑块寻址 LCD(Liquid Crystal Display)液晶显⽰器 LDT(Logic Design Translator)逻辑设计翻译程序 LED(Light Emitting Diode)发光⼆极管 LIFO(Last In First Out)后进先出 LP(Linear Programming)线性规划 LPC(Local Procedure Call)局部过程调⽤ LSIC(Large Scale Integration Circuit)⼤规模集成电路 M (Main board)主板 (Mark sensing)标志检测 (Mechanical mouse)机械⿏标 (Memory)内存 (Menu)菜单 (Menu bar)菜单栏 (Microprocessor)微处理器 (Microseconds)微秒 (Modem card)调制解调器 (Monitor)显⽰器 (Motherboard)主板 (Mouse) ⿏标 (Multifunctional device)多功能设备 (Magnetic tape reels)磁带卷 (Magnetic tape streamers)磁带条 (mailing list)邮件列表 (Medium band)媒质带宽 (metasearch engine)整合搜索引擎 (Microwave)微波 (Modem)解调器 (Modulation)解调 MAN(Metropolitan area network)城域⽹ MICR(magnetic-ink character recognition)磁墨⽔字符识别器 MAC(Medium Access Control)介质访问控制 MAN(Metropolitan Area Network)城域⽹ MBR(Master Boot Record)主引导记录 MC(Memory Card)存储卡⽚ MCA(Micro Channel Architecture)微通道结构 MDA(Monochrome Display Adapter)单⾊显⽰适配卡 MFM(Modified Frequency Modulation)改进调频制 MIB(Management Information Bass)管理信息库 MIDI(Musical Instrument Digital Interface) 乐器数字接⼝ MIMD(Multiple Instruction Stream,Multiple Data Stream)多指令流,多数据流 MIPS(Million Instructions Per Second)每秒百万条指令 MIS(Management Information System)管理信息系统 MISD(Multiple Instruction Stream,Single Data Stream)多指令流,单数据流 MMDS(Multi-channel Multipoint Distribution Service)多波段多点分发服务器 MMU(Memory Management Unit)内存管理单元 MPC(Multimedia PC)多媒体计算机 MPEG(Moving Picture Expert Group) ⼀种视频和⾳频的国际标准格式 MPLS(Multi-Protocol Label Switching)多协议标记交换 MPS(Micro Processor System)微处理器系列 MTBF(Mean Time Between Failures)平均故障间隔时间 MUD(Multiple User Dimension)多⽤户空间 N (Net PC)⽹络计算机 (Network adapter card)⽹卡 (Network personal computer)⽹络个⼈电脑 (Network terminal)⽹络终端 (Notebook computer)笔记本电脑 (Notebook system unit)笔记本系统单元 (Numeric entry)数字输⼊ (national information infrastructure protection act of1996)国际信息保护法案 (national service provider)全国性服务供应商 (Network architecture)⽹络体系结构 (Network bridge)⽹桥 (Network gateway)⽹关 (network manager)⽹络管理员 (newsgroup)新闻组 (no electronic theft act of1997)⽆电⼦盗窃法 (Node)节点 (Nonvolatile storage)⾮易失性存储 NOS(Network operation system)⽹络操作系统 NAOC(No-Account Over Clock)⽆效超频 NAT(Network Address Translation) ⽹络地址转换 NC(Network Computer)⽹络计算机 NDIS(Network Device Interface Speci fication)⽹络设备接⼝规范 NCM(Neural Cognitive Maps)神经元认知图 NFS(Network File System)⽹络⽂件系统 NIS(Network Information Services)⽹络信息服务 NNTP(Network News Transfer Protocol)⽹络新闻传输协议 NOC(Network Operations Center) ⽹络操作中⼼ NSP(Name Server Protocol)名字服务器协议 NTP(Network Time Protocol)⽹络时间协议 NUI(network user identification)⽹络⽤户标识 O (Object embedding)对象嵌⼊ (Object linking)⽬标链接 (Open architecture)开放式体系结构 OS(Operation System)操作系统 (Optical disk)光盘 (Optical mouse)光电⿏标 (Optical scanner)光电扫描仪 (Outline)⼤纲 (off-line browsers)离线浏览器 (Online storage)联机存储 OLE (object linking and embedding)对象链接⼊ OCR(optical-character recognition)字符识别器 OMR(optical-mark recognition)光标阅读器 OA(Of f ice Automation)办公⾃动化 OCR(Optical Character Recognition)光学字符识别 ODBC(Open Database Connectivity)开放式数据库互联 ODI(Open Data- link Interface)开放式数据链路接⼝ OEM(Original Equipment Manufactures)原始设备制造⼚家 OLE(Object Linking and Embedding)对象链接与嵌⼊ OMG(Object Management Group)对象管理组织 OMR(Optical-Mark Recognition)光标阅读器 OOM(Object Oriented Method)⾯向对象⽅法 OOP(Object Oriented Programming)⾯向对象程序设计 ORB(Object Request Broker)对象请求代理 OS(Operating System)操作系统 OSI(Open System Interconnect Reference Model)开放式系统互联参考模型 OSPF(Open Shortest Path First)开发最短路径优先 P (palmtop computer)掌上电脑 (Parallel ports)并⾏端⼝ (Passive-matrix)被动矩阵 (PC card)个⼈计算机卡 (Personal laser printer)个⼈激光打印机 (Personal video recorder card)个⼈视频记录卡 (Photo printer)照⽚打印机 (Pixel)像素 (Platform scanner)平版式扫描仪 (Plotter)绘图仪 (Plug and play)即插即⽤ (Plug-in boards)插件卡 (Pointer)指⽰器 (Pointing stick)指⽰棍 (Port)端⼝ (Portable scanner)便携式扫描仪 (Presentation files)演⽰⽂稿 (Presentation graphics)电⼦⽂稿程序 (Primary storage)主存 (Procedures)规程 (Processor)处理机 (Programming control language)程序控制语⾔ (Packets)数据包 (Parallel data transmission)平⾏数据传输 (Peer-to-peer network system点)对点⽹络系统 (person-person auction site)个⼈对个⼈拍卖站点 (physical security)物理安全 (Pits)凹⾯ (plug-in)插件程序 (privacy )隐私权 (proactive )主动地 (programmer)程序员 (Protocols)协议 (provider)供应商 (project )项⽬⼯程 (proxy server)代理服务 (pull products)推取程序 (push products)推送程序 PDA(personal digital assistant)个⼈数字助理 PCI(peripheral component interconnect)外部设备互连总线 PCMCIA (Personal Memory Card International Association)个⼈计算机存储卡国际协会 PBX(Private Branch Exchange)⽤户级交换机 PC(Personal Computer)个⼈计算机 PCB(Process Control Block)进程控制块 PCI(Peripheral Component Interconnect)外部连接互联,是⼀种局部总线 PCM(Pulse Code Modulation)脉冲编码调制 PCS(Personal Communications Service) 个⼈通信业务 PDA(Personal Digital As sistant)个⼈数字助理 PDF(Portable Document Format)便携式⽂档格式 PDN(Public Data Network)公共数据⽹ PHP(Personal Home Page)个⼈⽹页 PIB(Programmable Input Buffer)可编程输⼊缓冲区 PMMU(Paged Memory Management Unit)页⾯存储管理单元 POP(Post Of f ice Protocol)邮局协议 POST(Power-On Self -Test)加电⾃检 PPP(Peer-Peer Protocol)端对端协议 PPP(Point to Point Protocol)点到点协议 PPSN(Public Packed-Switched Network)公⽤分组交换⽹ PR(Performance Rate)性能⽐率 PROM(Programmable ROM)可编程只读存储器 PSN(Processor Serial Number)处理器序列号 Q QC(Quality Control)质量控制 QLP(Query Language Proces sor)查询语⾔处理器 QoS(Quality of Service)服务质量 R (RAM cache)随机⾼速缓冲器 (Range)范围 (Record)记录 (Relational database)关系数据库 (Replace)替换 (Resolution)分辨率 (Row)⾏ (Read-only)只读 (Reformatting)重组 (regional service provider)区域性服务供应商 (reverse directory)反向⽬录 (right to financial privacy act of 1979)财产隐私法案 (Ring network)环形⽹ RAD(Rapid Application Development)快速应⽤开发 RAI(Remote Application Interface)远程应⽤程序界⾯ RAID(Redundant Array Independent Disk) 冗余列阵磁盘机 RARP(Reverse Address Resolution Protocol)反向地址解析协议 RAM(Random Acces s Memory)随机存储器 RAM(Real Address Mode)实地址模式 RAID(Redundant Arrays of Inexpensive Disks)冗余磁盘阵列技术 RAS(Remote Access Service)远程访问服务 RCP(Remote CoPy)远程复制 RDA(Remote Data Access)远程数据访问 RDO (Remote Data Objects) 远程数据对象 RF(Radio Frequency) 射频,⽆线电频率 RIP(Raster Image Protocol)光栅图像处理器 RIP(Routing Information Protocol)路由选择信息协议 RISC(Reduced Instruction Set Computer)精简指令集计算机 ROM(Read Only Memory)只读存储器 RPC(Remote Procedure Call)远程过程调⽤ RPG(Role Play Games)⾓⾊扮演游戏 RPM(Revolutions Per Minute)转/分 RTS(Request To Send)请求发送 RTSP(Real Time Streaming Protocol) 实时流协议 S (Scanner)扫描器 (Search)查找 (Secondary storage device)辅助存储设备 (Semiconductor)半导体 (Serial ports)串⾏端⼝ (Server)服务器 (Shared laser printer)共享激光打印机 (shakedown test )调试 (Sheet)表格 (Silicon chip)硅⽚ (Slots)插槽 (Smart card)智能卡 (Soft copy)软拷贝 (Software suite)软件协议 (Sorting)排序 (Source file)源⽂件 (Special-purpose application)专⽤⽂件 (Spreadsheet)电⼦数据表 (Standard toolbar)标准⼯具栏 (Supercomputer)巨型机 (System )系统 (System cabinet )系统箱 (System clock)时钟 (System software)系统软件 (Satellite/air connection services)卫星⽆线连接服务 (search engines)搜索引擎 (search providers)搜索供应者 (search services )搜索服务器 (Sectors)扇区 (security)安全 (Sending and receiving devices)发送接收设备 (Sequential access)顺序存取 (Serial data transmission)单向通信 (signature line)签名档 (snoopware)监控软件 (software copyright act of1980)软件版权法案 (software piracy)软件盗版 (Solid-state storage)固态存储器 (specialized search engine)专⽤搜索引擎 (spiders)⽹页爬⾍ (spike)尖峰电压 (Star network)星型⽹ (Strategy)⽅案 (subject)主题 (subscription address)预定地址 (Superdisk)超级磁盘 (surfing)⽹上冲浪 (surgeprotector)浪涌保护器 (systems analyst)系统分析师... SACL(System Access Control List) 系统访问控制列表 SAF(Store And Forward)存储转发 SAP(Service Acces s Point)服务访问点 SCSI(Small Computer System Interface)⼩型计算机系统接⼝ SDLC(Synchronous Data Link Control)同步数据链路控制 SGML(Standard Generalized Markup Language)标准通⽤标记语⾔ SHTTP(Secure Hype Text Transfer Protocol)安全超⽂本传递协议 SMP(Symmetric Multi-Processor)对称式多处理器 SMTP(Simple Mail Transport Protocol)简单邮件传输协议 SNA(System Network Architecture)系统⽹络结构 SNMP(Simple Network Management Protocol)简单⽹络管理协议 SNR(Signal Noise Ratio)信噪⽐ SNTP(Simple Network Time Protocol)简单⽹络时间协议 SONC(System On a Chip)系统集成芯⽚ SONET(Synchronous Optic Network)同步光纤⽹ SPC(Stored-Program Control)存储程序控制 SQL(Structured Query Language)结构化查询语⾔ SRAM(Static Random Access Memory)静态随机存储器 SRPG(Strategies Role Play Games) 战略⾓⾊扮演游戏 SSL(Secure Sockets Layer)安全套接层 STDM(Synchronous Time Division Multiplexing)同步时分复⽤ STG(Shoot Game)射击类游戏 STP(Shielded Twisted-Pair)屏蔽双绞线 SVGA (Super Video Graphics Array) 超级视频图形阵列 T (Table)⼆维表 (Telephony)电话学 (Television boards)电视扩展卡 (Terminal) 终端 (Template)模板 (Text entry)⽂本输⼊ (Thermal printer )热印刷 (Thin client)瘦客 (Toggle key)触发键 (Toolbar)⼯具栏 (Touch screen)触摸屏 (Trackball)球 (TV tuner card)电视调谐卡 (Two-state system))双状态系统 (technical writer)技术协作者 (technostress)重压技术 (telnet)远程登录 (Time-sharing system)分时系统 (Topology)拓扑结构 (Tracks)磁道 (traditional cookies)传统的信息记录程序 (Twisted pair)双绞 TCB(Transmission Control Block)传输控制块 TCP(Transmis sion Control Protocol)传输控制协议 TCP/IP(Transmission Control Protocol / Internet Protocol)传输控制协议/ ⽹间协议 TDM(Time Division Multiplexing)时分多路复⽤ TDMA(Time Division Multiplexing Address)时分多址技术 TDR(Time-Domain Reflectometer)时间域反射测试仪 TFT(Thin Film Transistor Monitor)薄膜晶体管显⽰器 TFTP(Trivial File Transfer Protocol)简单⽂件传送协议 TIFF(Tag Image File Format)标记图形⽂件格式 TIG(Task Interaction Graph)任务交互图 TLI(Transport Layer Interface)传输层接⼝ TM(Traffic Management)业务量管理,流量管理 TPS(Transactions Per Second)(系统)每秒可处理的交易数 TSR(Terminate and Stay Resident)终⽌并驻留 TTL(Transistor-Transistor Logic)晶体管—晶体管逻辑电路 TWX(Teletypewriter Exchange)电传电报交换机 U (Unicode)统⼀字符标准 (uploading)上传 (usenet)世界性新闻组⽹络 UART(Universal Asynchronous Receiver Transmitter)通⽤异步收发器 UDF(Universal Disk Format)通⽤磁盘格式 UDP(User Datagram Protocol)⽤户数据报协议 UHF(Ultra High Frequency)超⾼频 UI(User Interface)⽤户界⾯,⽤户接⼝ UIMS(User Interface Management System)⽤户接⼝管理程序 UNI(User Network Interface)⽤户⽹络接⼝ UPA(Ultra Port Architecture)超级端⼝结构 UPS(Uninterruptible Power Supply)不间断电源 URI(Uniform Resource Identi fier)环球资源标识符 URL(Uniform Resource Locator)统⼀资源定位器 USB(Universal Serial Bus)通⽤串⾏总线 UTP(Unshielded Twisted-Pair)⾮屏蔽双绞线 UXGA(Ultra Extended Graphics Array)超强图形阵列 V (Virtual memory)虚拟内存 (Video display screen)视频显⽰屏 (Voice recognition system)声⾳识别系统 (vertical portal)纵向门户 (video privacy protection act of 1988)视频隐私权保护法案 (virus checker)病毒检测程序 (virus)病毒 (Voiceband)⾳频带宽 (Volatile storage)易失性存储 (voltage surge)电涌 VAD(Virtual Addres s Descriptors)虚拟地址描述符 VAGP(Variable Aperature Grille Pitch) 可变间距光栅 VAN(Value Added Network)增值⽹络 VAP(Value-Added Process)增值处理 VAS(Value-Added Server)增值服务 VAX(Virtual Address eXtension)虚拟地址扩充 VBR(Variable Bit Rate)可变⽐特率 VC(Virtual Circuit)虚拟线路 VCPI(Virtual Control Program Interface)虚拟控制程序接⼝ VDD(Virtual Device Driver s)虚拟设备驱动程序 VDR(Video Disc Recorder)光盘录像机 VDT(Video Display Terminals)视频显⽰终端 VDU(Visual Display Unit)视频显⽰单元 VFS(Virtual File System)虚拟⽂件系统 VGA(Video Graphics Adapter)视频图形适配器 VIS(Video Information System)视频信息系统 VLAN(Virtual LAN)虚拟局域⽹ VLIW(Very Long Instruction Word)超长指令字 VLSI(Very Large Scale Integration)超⼤规模集成 VMS(Virtual Memory System)虚拟存储系统 VOD(Video On Demand)视频点播系统 VON(Voice On Net)⽹上通话 VR(Virtual Reality)虚拟现实 VRML(Virtual Reality Modeling Language)虚拟现实建模语⾔ VRR(Vertical Refresh Rate)垂直刷新率 VTP(Virtual Terminal Protocol)虚拟终端协议 W (Wand reader )条形码读⼊ (Web )⽹络 (Web appliance )环球⽹设备 (Web page)⽹页 (Web site address)⽹络地址 (Web terminal)环球⽹终端 (Webcam)摄像头 (What-if analysis)假定分析 (Wireless revolution)⽆线⾰命 (Word)字长 (Word processing)⽂字处理 (Word wrap)⾃动换⾏ (Worksheet file) ⼯作⽂件 (web auctions)⽹上拍卖 (web broadcasters)⽹络⼴播 (web portals)门户⽹站 (web sites)⽹站 (web storefront creation packages)⽹上商店创建包 (web storefronts)⽹上商店 (web utilities)⽹上应⽤程序 (web-downloading utilities)⽹页下载应⽤程序 (webmaster web)站点管理员 (web)万维⽹ (Wireless modems)⽆线调制解调器 (wireless service provider)⽆线服务供应商 WWW(world wide web)万维⽹ (worm)蠕⾍病毒 (Write-protect notch)写保护⼝ WAN(Wide area network)⼴域⽹ (Web server)Web 服务器 (well-connected )连接良好 (well-known services )公认的服务。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
相关文档
最新文档