【计算机类职业资格】数据库工程师-20及答案解析.doc
《【计算机类职业资格】数据库工程师-20及答案解析.doc》由会员分享,可在线阅读,更多相关《【计算机类职业资格】数据库工程师-20及答案解析.doc(14页珍藏版)》请在麦多课文档分享上搜索。
1、数据库工程师-20 及答案解析(总分:100.00,做题时间:90 分钟)一、选择题(总题数:35,分数:70.00)1.按照 Myers 的说法,计算机系统分为若干层次。我们通常所指的体系结构是指(分数:2.00)A.逻辑门体系结构B.微代码体系结构C.操作系统体系结构D.指令集体系结构2.根据操作数在 CPU 中的暂存机制可以对它进行分类,大家熟悉的 Intel8086 系列就属于(分数:2.00)A.堆栈型B.累加器型C.寄存器型D.通用寄存器与累加器混合型3.在指令码的优化中,能使平均码长最短的方法是(分数:2.00)A.哈夫曼编码B.曼彻斯特编码C.等长码D.等长扩展码4.在 cac
2、he 的地址映射中,凡主存中的任意一块均可映射到 cache 内的任意一块的位置上,这种方法称为(分数:2.00)A.全相联映射B.直接映射C.组相联映射D.混合映射5.通道是重要的 I/O 方式,其中适合连接大量终端及打印机的通道是(分数:2.00)A.数组多路B.选择通道C.字节交叉多路D.字节突发多路6.在 Benchmark 中,whetstone 属于(分数:2.00)A.实程序B.核心程序C.简单基准程序D.复合基准程序7.某台计算机的速度比改进前提高了 10 倍,但它仅在 50%的时间内可用,这样一来它的总加速比为(分数:2.00)A.5B.1.4C.1.8D.0.58.数据流计
3、算机开拓并行性的基础是(分数:2.00)A.同步性和函数性B.异步性和函数性C.同步性和自发性D.异步性和自发性9.在高速并行结构中,速度最快但通用性最差的是(分数:2.00)A.相联处理机B.数据流处理机C.阵列处理机D.专用多功能单元10.本题中给出了四种描述(域定义)与相应术语之间的对应关系,请指出哪一组对应关系是正确的。 描述: a. 信号的频率范围,在计算机网络中也用来表示数据传输速率。 b. 一个周期性函数可以表示为无数不同振幅、频率与相位的正(余)弦函数之和。 c. 信道容量是带宽与信噪比的函数。 d. 最大信号传输速率(bps)是信道带宽(Hz)数值的两倍。 术语: 1. 傅里
4、叶(Fourier)原理 2. 带宽 3. Nyguist 准则 4. Shannon 定律(分数:2.00)A.描述 术语 a 1b 2c 3d 4B.描述 术语 a 2b 4c 1d 3C.描述 术语 a 2b 1c 4d 3D.描述 术语 a 2b 1c 3d 411.本题中给出了四种描述(域定义)与相应术语之间的对应关系,请指出哪一组对应关系是正确的。 描述: a. 一种高性能的光纤令牌环网,它的数据传输速率为 100Mbps,覆盖范围是 200KM,可以连入的结点为1000 个。 b. 这种网络保持着 Ethernet 的帧结构、接口与 MAC 方法等特点,只是将每个比特的发送时间由
5、 100ns 减少为 10ns。 c. 这种网络将所有传送的信息都以短的、固定长度的信元(cell)形式发送。每个信元长度为 53 字节。这种网络是面向连接的,并且具有极高的数据传输速率。 d. 这种网络用于一个城市范围内的多个 LAN 的互连,它使用 IEEE 802.6 协议。 术语: 1. FDDI 2. ATM 3. Fast Ethernet 4. DQDB(分数:2.00)A.描述 术语 a 1b 3c 2d 4B.描述 术语 a 1b 3c 4d 2C.描述 术语 a 1b 2c 4d 3D.描述 术语 a 2b 1c 4d 312.In the following statem
6、ents about graph operations, which one is NOT correct?(分数:2.00)A.Spanning tree of a graph may not be unique.B.Minimum spanning tree of a graph may not be unique.C.Finding critical path is an operation on directed graph.D.Finding critical path is an operation on undirected graph.13.Which traversal me
7、thod for a binary tree does the following Pascal code illustrate? procedure traverse(p:pointer); begin it pnil then begin traverse(p.left); process(p); traverse(p.right) end end;(分数:2.00)A.InorderB.PreorderC.PostorderD.Reorder14.What storage scheme does MS-DOS use for storing files on a disk?(分数:2.0
8、0)A.I-nodesB.a linked list allocationC.a continuous allocationD.a linked list with index15.Which of the followings is NOT a condition for deadlock?(分数:2.00)A.StarvationB.Circular WaitC.No PreemptionD.Mutual Exclusion16.Assume that an operating system uses a round-robin scheduler. The process“s quant
9、um is 20 msec, and the context switch is 5 msec. What percentage of the CPU“s time is spent on administrative overhead?(分数:2.00)A.5%B.15%C.20%D.25%17.What state is a process in when it can“t run because it needs a resource to become available?(分数:2.00)A.ReadyB.InterruptC.BlockedD.Running18.The follo
10、wing sectors are requested from the disk: 11,1,36,16,34,9,12 What is the order of the sector reads if you are using the elevator algorithm?(分数:2.00)A.1,9,11,12,16,34,36B.11,1,36,16,34,9,12C.11,12,9,16,1,34,36D.11,12,16,34,36,9,119.What is the candidate key of a relational database?(分数:2.00)A.A field
11、 with a constraint placed on it.B.A set of fields that have no data in them.C.A set of fields in a table used to identify a record uniquely.D.Fields from multiple tables that are used for sorting records.20.What Normal From is the table shown in the exhibit? emps tbl emp idemp_nameemp_phonedept_name
12、dept_phonedept_mgrname (1) emp_idemp_name, emp_phone, dept_name(2) dept_name dept_phone, dept_mgrname(分数:2.00)A.1NFB.2NFC.3NFD.BCNF21.Which operating system can Oracle database NOT be used in?(分数:2.00)A.DOSB.UNIXC.Windows95D.IBM Mainframes22.Which values are NOT permitted to be part of the primary k
13、ey?(分数:2.00)A.NULLB.punctuationC.special charactersD.alpha-numeric characters23.Which phase of the software engineering process results in the Software Requirements Specification?(分数:2.00)A.definition phaseB.engineering phaseC.maintenance phaseD.development phase24.When drawing multilevel data flow
14、chart of top-down, the balance between parent chart and son chart must be taken into account, and to pass judgment for the balance of the charts is regularly maintained by(分数:2.00)A.Output dataB.Data dictionaryC.Processing numberD.Input data25.Which is the strictest form of cohesion?(分数:2.00)A.logic
15、alB.functionalC.proceduralD.coincidental26.Which is NOT a concept of White Box Testing?(分数:2.00)A.You should execute all loops at their boundary conditions.B.You should execute all interfaces at their boundary conditions.C.You should execute all logical decisions on their true and false sides.D.You
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
5000 积分 0人已下载
下载 | 加入VIP,交流精品资源 |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 计算机 职业资格 数据库 工程师 20 答案 解析 DOC
