奥鹏作业答案 - 分忧网!奥鹏作业,奥鹏在线作业,奥鹏作业答案及毕业论文分忧

奥鹏作业答案,离线作业,奥鹏作业分忧网

当前位置: 主页 > 奥鹏作业答案 >

超载开关一般整定在额定载荷的()时动作。

时间:2017-11-01 14:05来源:未知 作者:admin 点击:
15. 超载开关一般整定在额定载荷的()时动作。 A. 80% B. 90% C. 100% D. 110% 满分:2 分 16. 《暖通规范》规定:热水供暖系统最不利循环环路与各并联环路之间的计算压力损失相对误差不大于() A. 12% B. 13% C. 14% D. 15% 满分:2 分 17. 智能建筑中多媒体技

一、单选题(共 25 道试题,共 100 分。)
V 1.  How many rows can be retrieved using a single SELECT INTO statement?
A. Only one row
B. As many as are in the result
C. As many as are host variables used in the call
D. As many as host variable array structures can hold
      满分:4  分
需要这门答案请联系客服QQ1137561768,QQ1270396195,QQ938067069 哟

2.  An application uses embedded dynamic SQL to connect to a remote DB2 server and inserts data into the CUST.ORDERS table on that remote DB2 server. To enable access of the remote DB2 server, Administrator FOO needs to create a package with default options such that BAR is the only non-administrative user that can use this package on the remote DB2 server. Which statement describes the privileges that must be granted and/or revoked by FOO to accomplish this?
A. BAR requires EXECUTE privilege on the package and UPDATE privilege on CUST.ORDERS, and the EXECUTE privilege for the package must be revoked from PUBLIC.
B. BAR requires EXECUTE privilege on the package and INSERT privilege on CUST.ORDERS, and the EXECUTE privilege for the package must be revoked from PUBLIC.
C. BAR requires EXECUTE privilege on the package and INSERT privilege on CUST.ORDERS, and the REFERENCES privilege for the package must be revoked from PUBLIC.
D. BAR requires EXECUTE privilege on the package and UPDATE privilege on CUST.ORDERS, and the REFERENCES privilege for the package must be revoked from PUBLIC.
      满分:4  分
3.  当数据库遭到破坏时,为了能迅速恢复,在进行事务处理过程中将对数据库更新的全部内容写入以下哪项?
A. 副本文件
B. 日志文件
C. 检查点文件
D. 死锁文件
      满分:4  分

8.  向基本表增加一个新列后,原有元组在该列上的值为什么?
A. TRUE
B. FALSE
C. 空值
D. 不确定
      满分:4  分
9.  要更改数据库管理器配置文件,需以下哪个数据库权限?
A. DBADM
B. SYSMAINT
C. SYSCTRL
D. SYSADM
      满分:4  分
10.  Given the table T1 with the following data: C1 --- ABC DE and the application code: EXEC SQL DECLARE cur1 CURSOR WITH HOLD FOR SELECT c1 FROM t1 ORDER BY c1 EXEC SQL DECLARE cur2 CURSOR WITH HOLD FOR SELECT c1 FROM t1 ORDER by c1 EXEC SQL OPEN cur1 EXEC SQL OPEN cur2 EXEC SQL FETCH cur1 INTO :hv EXEC SQL FETCH cur1 INTO :hv EXEC SQL FETCH cur2 INTO :hv EXEC SQL COMMIT EXEC SQL FETCH cur2 INTO :hv EXEC SQL FETCH cur2 INTO :hv EXEC SQL FETCH cur1 INTO :hv EXEC SQL CLOSE cur2 EXEC SQL CLOSE cur1 What is the final content of the host variable "hv"?
A. A
B. B
C. C
D. D
      满分:4  分
11.  Given the EMPLOYEE table definition: CREATE TABLE employee ( workdept CHAR(30), salary INTEGER ) Which of the following is a correct usage of parameter markers in a JDBC program?
A. String sql = "UPDATE employee SET salary=salary*?WHERE workdept=?"; statement stmt=con.createStatement(sql);
B. String sql = "UPDATE employee SET salary=salary*?WHERE workdept=?"; statement stmt=con.createStatement(sql);
C. String sql = "UPDATE employee SET salary=salary*?WHERE workdept=?"; statement stmt=con.createStatement(sql);
D. String sql = "UPDATE employee SET salary=salary*?WHERE workdept=?"; statement stmt=con.createStatement(sql);
      满分:4  分
12.  Given the tables T1 and T2, each with an INTEGER column: T1 COL1 ----------- 1- 1- 22 T2 COL1 ----------- 1- 2- 22 and the following query that executes successfully: SELECT * FROM T1 LEFT OUTER JOIN T2 ON T1.COL1=T2.COL1 How many rows will the query return?
A. 5
B. 6
C. 10
D. 36
      满分:4  分
13.  E-R图中的联系可以与()实体有关
A. 0个
B. 1个
C. 1个或多个
D. 多个
      满分:4  分
14.  下面哪个工具可以保存终端用户需要存取的元数据?
A. Query Management Facility
B. DB2 Query Patroller
C. DB2存储过程构建器
D. 信息目录
      满分:4  分
15.  两个子查询的结果(),可以执行并、交、差操作
A. 结构完全一致
B. 结构完全不一致
C. 结构部分一致
D. 主键一致
      满分:4  分
16.  关系数据库管理系统应能实现的专门关系运算包括()
A. 排序、索引、统计
B. 选择、投影、连接
C. 关联、更新、排序
D. 显示、打印、制表
      满分:4  分
17.  如果选用循环日志方式,辅助日志文件何时分配?
A. 数据库建立的时候
B. 数据库服务器启动的时候
C. 需要的时候
D. 以上都不对
      满分:4  分
18.  Given the expression: WITH most_cities AS ( SELECT b.id,b.name,a.cities FROM country a, staff b WHERE a.person = b.id AND cities > :threshold ) SELECT * FROM most_cities In which of the following does MOST_CITIES exist?
A. user tables
B. server memory
C. user table space
D. system catalog tables
      满分:4  分
19.  Given the tables T1 and T2 with INTEGER columns: T1 COL1 ----------- 1- 1- 22 T2 COL1 ----------- 1- 2- 22 and the following statement that executes successfully: DELETE FROM t1 WHERE col1 IN (SELECT * FROM t2) How many rows will be left in T1 after running this statement?
A. 0
B. 2
C. 3
D. 6
      满分:4  分
20.  Given the code: EXEC SQL WITH most_cities AS ( SELECT b.id, b.name, a.cities FROM country a, staff b WHERE a.person = b.id AND cities > :threshold ) SELECT id, name, cities FROM most_cities INTO :id, :name, :cities WHERE cities IN (SELECT MAX(cities) FROM most_cities) Which of the following can reference MOST_CITIES?
A. The current statement
B. Statements from any application
C. All statements within this application
D. All statements within the current unit of work
      满分:4  分
21.  对于支持小规模的部门级应用,这些应用不需要存取驻留在OS/400、OS/390等平台上的远程数据库,则需要哪种级别的DB2 产品?
A. 企业版
B. 工作组版
C. 企业扩展版
D. 个人版
E. 卫星版
F. 微型版
      满分:4  分
22.  DBMS是()
A. 操作系统的一部分
B. 在操作系统支持下的系统软件
C. 一种编译程序
D. 应用程序系统
      满分:4  分
23.  当FROM子句中出现多个基本表或视图时,系统将执行什么操作?
A. 并
B. 等值联接
C. 自然联接
D. 笛卡儿积
      满分:4  分
24.  关系模型中的关系模式至少是()
A. 1NF
B. 2NF
C. 3NF
D. BCNF
      满分:4  分
25.  如果想在数据导入的过程中创建表,应该
A. 使用IXF文件格式进行LOAD
B. 使用WSF文件格式进行LOAD
C. 使用IXF文件格式进行IMPORT
D. 使用WSF文件格式进行IMPORT
      满分:4  分
4.  下列SQL语句中,能够实现“收回用户U4对学生表(STUD)中学号(XH)的000权”这一功能的是()
A. REVOKE UPDATE(XH) ON TABLE FROM U4
B. REVOKE UPDATE(XH) ON TABLE FROM PUBLIC
C. REVOKE UPDATE(XH) ON STUD FROM U4
D. REVOKE UPDATE(XH) ON STUD FROM PUBLIC
      满分:4  分
5.  Given an ODBC/CLI program with a single connection, two threads and the following actions which complete successfully: Thread 1: INSERT INTO mytab VALUES (1) Thread 2: INSERT INTO mytab VALUES (2) Thread 1: COMMIT Thread 2: INSERT INTO mytab VALUES (3) Thread 1: ROLLBACK Thread 2: COMMIT How many records will be inserted and retained in the table MYTAB?
A. 0
B. 1
C. 2
D. 3
      满分:4  分
6.  下面哪个工具提供了对文本、图象、音频、视频和XML文档等非传统数据类型的处理能力?
A. DB2 数据仓库中心
B. DB2数据链接管理器
C. DB2关系扩展器
D. DB2 OLAP Starter Kit
      满分:4  分
7.  下列哪种工具可以向表中增添记录,并更改数据库的统计信息?
A. import
B. insert
C. load
D. update
      满分:4  分
 

(责任编辑:admin)要这答案加QQ:800020900 或加微信:q800020900 获取
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 验证码:点击我更换图片
栏目列表
推荐内容