2022湖北软件水平考试考试考前冲刺卷(3).docx
《2022湖北软件水平考试考试考前冲刺卷(3).docx》由会员分享,可在线阅读,更多相关《2022湖北软件水平考试考试考前冲刺卷(3).docx(34页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、2022湖北软件水平考试考试考前冲刺卷(3)本卷共分为1大题50小题,作答时间为180分钟,总分100分,60分及格。一、单项选择题(共50题,每题2分。每题的备选项中,只有一个最符合题意) 1.关系R、S如下图所示,关系代数表达式π4,5,3(σ16(R×S)的输出结果与()等价,该表达式与()等价。若对关系R、S进行自然连接,所得关系的属性列数和元组个数分别为()。关系R、S如下图所示,该表达式与()等价。AπA,B,C(σAC(R×S)BπR.A,R.B,R.C(σR.AS.B(R×S)CπR
2、.A,S.B,S.C(σR.AS.C(R×S)DπS.A,S.B,R.C(σR.AS.C(R×S)2.设有职工关系Emp (Eno,Ename,Esex,EDno)和部门关系Dept (Dno,Dname, Daddr),创建这两个关系的SQL语句如下:CREATE TABLE Emp (Eno CHAR(4),Ename CHAR(8),Esex CHAR(1) CHECK(Esex IN (’M’,’F’),EDno CHAR(4) REFERENCES Dept (Dno),PRIMAR
3、Y KEY (Eno);CREATE TABLE Dept (Dno CHAR(4) NOT NULL UNIQUE,Dname CHAR(20),Daddr CHAR(30);直接运行该语句,DBMS会报错,原因是()。若经过修改,上述两个表创建完毕之后(尚无数据),则下述语句中能被执行的是()。直接运行该语句,DBMS会报错,原因是()。A创建表Dept时没有指定主码B创建表Dept时没有指定外码C创建表Emp时,被参照表Dept尚未创建D表Emp的外码EDno与被参照表Dept的主码Dno不同名3.事务T1、T2和T3对相同的一组数据A、B和C进行操作,对于如下的一个并发调度,其中T1与
4、T2间并发操作(),T2与T3间并发操作()。T2与T3间并发操作()。A正确B不能重复读C将丢失修改D将读脏数据4.假设员工关系EMP(员工号,姓名,性别,部门,部门电话,部门负责人,家庭住址,家庭成员,成员关系)如下表所示。如果一个部门只能有一部电话和一位负责人,一个员工可以有多个家庭成员,那么关系EMP属于(),且()问题;为了解决这一问题,应该将员工关系EMP分解为()。为了解决这一问题,应该将员工关系EMP分解为()。AEMP1(员工号,姓名,性别,家庭住址)EMP2(部门,部门电话,部门负责人)EMP3(员工号,家庭成员,成员关系)BEMP1(员工号,姓名,性别,部门,家庭住址)E
5、MP2(部门,部门电话,部门负责人)EMP3(员工号,家庭成员,成员关系)CEMP1(员工号,姓名,性别,家庭住址)EMP2 (部门,部门电话,部门负责人,家庭成员,成员关系)DEMP1(员工号,姓名,性别,部门,部门电话,部门负责人,家庭住址)EMP2(员工号,家庭住址,家庭成员,成员关系)5.关系R、S如下图所示,关系代数表达式π4,5,3(σ16(R×S)的输出结果与()等价,该表达式与()等价。若对关系R、S进行自然连接,所得关系的属性列数和元组个数分别为()。若对关系R、S进行自然连接,所得关系的属性列数和元组个数分别为()。A3和0B3和2C6和0D6
6、和26.设有职工关系Emp (Eno,Ename,Esex,EDno)和部门关系Dept (Dno,Dname, Daddr),创建这两个关系的SQL语句如下:CREATE TABLE Emp (Eno CHAR(4),Ename CHAR(8),Esex CHAR(1) CHECK(Esex IN (’M’,’F’),EDno CHAR(4) REFERENCES Dept (Dno),PRIMARY KEY (Eno);CREATE TABLE Dept (Dno CHAR(4) NOT NULL UNIQUE,Dname CHAR(20),
7、Daddr CHAR(30);直接运行该语句,DBMS会报错,原因是()。若经过修改,上述两个表创建完毕之后(尚无数据),则下述语句中能被执行的是()。若经过修改,上述两个表创建完毕之后(尚无数据),则下述语句中能被执行的是()。AINSERT INTO Emp VALUES(’e001’,’王’,’M’,’d1’);BINSERT INTO Emp VALUES(NULL,’王’,’M’,’d1’,);CINSERT INTO
8、 Emp VALUES(’e001’,’王’,’M’,NULL);DINSERT INTO Emp VALUES(’e001’,’王’,’X’,’d1’);7.某超市的商品(商品号,商品名称,生产商,单价)和仓库(仓库号,地址,电话,商品号,库存量)两个基本关系如表1和表2所示。A仓库关系的主键是(),该关系没有达到第三范式的原因是();B查询联想生产的激光打印机的总库存量的SQL语句如下:SELECT 商品名称,()FROM商
9、品,仓库WHERE () AND ();C若仓库关系的地址不能为空,请将下述仓库关系SQL语句的空缺部分补充完整。CREATE TABLE仓库(仓库号CHAR(2),地址 CHAR(20) (),电话 CHAR(20),商品号 CHAR(5),库存量 NUMERIC(5),(),();该关系没有达到第三范式的原因是()。A没有消除非主属性对码的部分函数依赖,如:仓库号→电话B没有消除非主属性对码的部分函数依赖,如:地址→电话C只消除了非主属性对码的部分函数依赖,而未消除传递函数依赖D只消除了非主属性对码的传递函数依赖,而未消除部分函数依赖8.某超市的商品(商品号,商品名称,
10、生产商,单价)和仓库(仓库号,地址,电话,商品号,库存量)两个基本关系如表1和表2所示。A仓库关系的主键是(),该关系没有达到第三范式的原因是();B查询联想生产的激光打印机的总库存量的SQL语句如下:SELECT 商品名称,()FROM商品,仓库WHERE () AND ();C若仓库关系的地址不能为空,请将下述仓库关系SQL语句的空缺部分补充完整。CREATE TABLE仓库(仓库号CHAR(2),地址 CHAR(20) (),电话 CHAR(20),商品号 CHAR(5),库存量 NUMERIC(5),(),();SELECT 商品名称,()。ANUMBER(库存量)BSUM(库存量)C
11、COUNT(库存量)DTOTAL(库存量)9.某超市的商品(商品号,商品名称,生产商,单价)和仓库(仓库号,地址,电话,商品号,库存量)两个基本关系如表1和表2所示。A仓库关系的主键是(),该关系没有达到第三范式的原因是();B查询联想生产的激光打印机的总库存量的SQL语句如下:SELECT 商品名称,()FROM商品,仓库WHERE () AND ();C若仓库关系的地址不能为空,请将下述仓库关系SQL语句的空缺部分补充完整。CREATE TABLE仓库(仓库号CHAR(2),地址 CHAR(20) (),电话 CHAR(20),商品号 CHAR(5),库存量 NUMERIC(5),(),(
12、);WHERE ()A生产商=联想B仓库.生产商=联想C生产商=’联想’D仓库.生产商=’联想’10.在需求分析阶段,需求调查的内容是(),需求分析的结果是()。在需求分析阶段,需求调查的内容是()。A信息要求、处理要求B安全性与完整性要求C信息要求、安全性要求D信息要求、处理要求、安全性与完整性要求11.For nearly ten years, the Unified Modeling Language (UML) has been the industry standard for visualizing, specifying, cons
13、tructing, and documenting the () of a software-intensive system. As the () standard modeling language, the UML facilitates communication and reduces confusion among project (). The recent standardization of UML 2.0 has further extended the language’s scope and viability. Its inherent expressiv
14、eness allows users to () everything from enterprise information systems and distributed Web-based applications to real-time embedded systems.The UML is not limited to modeling software. In fact, it is expressive enough to model () systems, such as workflow in the legal system, the structure and beha
15、vior of a patient healthcare system, software engineering in aircraft combat systems, and the design of hardware.To understand the UML, you need to form a conceptual model of the language, and this requires learning three major elements: the UML’s basic building blocks, the rules that dictate
16、how those building blocks may be put together, and some common mechanisms that apply throughout the UML.For nearly ten years, the Unified Modeling Language (UML) has been the industry standard for visualizing, specifying, constructing, and documenting the () of a software-intensive system.AclassesBc
17、omponentsCsequencesDartifacts12.在需求分析阶段,需求调查的内容是(),需求分析的结果是()。在需求分析阶段,需求分析的结果是()。A数据流图B数据字典C数据流图、数据字典DE-R图13.For nearly ten years, the Unified Modeling Language (UML) has been the industry standard for visualizing, specifying, constructing, and documenting the () of a software-intensive system. As t
18、he () standard modeling language, the UML facilitates communication and reduces confusion among project (). The recent standardization of UML 2.0 has further extended the language’s scope and viability. Its inherent expressiveness allows users to () everything from enterprise information syste
19、ms and distributed Web-based applications to real-time embedded systems.The UML is not limited to modeling software. In fact, it is expressive enough to model () systems, such as workflow in the legal system, the structure and behavior of a patient healthcare system, software engineering in aircraft
20、 combat systems, and the design of hardware.To understand the UML, you need to form a conceptual model of the language, and this requires learning three major elements: the UML’s basic building blocks, the rules that dictate how those building blocks may be put together, and some common mechan
21、isms that apply throughout the UML.As the () standard modeling language.ArealBlegalCde factoDillegal14.某超市的商品(商品号,商品名称,生产商,单价)和仓库(仓库号,地址,电话,商品号,库存量)两个基本关系如表1和表2所示。A仓库关系的主键是(),该关系没有达到第三范式的原因是();B查询联想生产的激光打印机的总库存量的SQL语句如下:SELECT 商品名称,()FROM商品,仓库WHERE () AND ();C若仓库关系的地址不能为空,请将下述仓库关系SQL语句的空缺部分补充完整。CREA
22、TE TABLE仓库(仓库号CHAR(2),地址 CHAR(20) (),电话 CHAR(20),商品号 CHAR(5),库存量 NUMERIC(5),(),();AND ()A商品名称=激光打印机AND商品.商品号=仓库.商品号B商品名称=’激光打印机’AND商品.商品号=仓库.商品号C商品名称=激光打印机OR商品.商品号=仓库.商品号D商品名称=’激光打印机’OR商品.商品号=仓库.商品号15.For nearly ten years, the Unified Modeling Language (UML) has been the indu
23、stry standard for visualizing, specifying, constructing, and documenting the () of a software-intensive system. As the () standard modeling language, the UML facilitates communication and reduces confusion among project (). The recent standardization of UML 2.0 has further extended the language&rsqu
24、o;s scope and viability. Its inherent expressiveness allows users to () everything from enterprise information systems and distributed Web-based applications to real-time embedded systems.The UML is not limited to modeling software. In fact, it is expressive enough to model () systems, such as workf
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022 湖北 软件 水平 考试 考前 冲刺
限制150内