2020 数据库原理(郭云飞)(湘潭大学) 最新满分章节测试答案

2025年5月2日 分类:免费网课答案 作者:网课帮手
文章目录[隐藏]

本答案对应课程为:点我自动跳转查看
本课程起止时间为:2020-02-24到2020-05-31
本篇答案更新状态:已完结

第一章 绪论 第一章测验

1、 问题:The relational data model is proposed by :
选项:
A:C. W. Bachman
B: R. Boyce
C:E. F. Codd
D:J. Gray
答案: 【E. F. Codd

2、 问题:Which of the following Software is NOT DBMS :
选项:
A:SQL Server
B:Oracle
C:Android
D:MySQL
答案: 【Android

3、 问题:There are two different standard terminologies (术语). A column in a table is called a(an) [ ] in a relation:
选项:
A:tuple
B:attribute
C:domain
D:degree
答案: 【attribute

4、 问题:Which of the following database object is used to speed up access to desired data ?
选项:
A:Table
B:Index
C:View
D:Log
答案: 【Index

第一章 绪论 第1次测试

1、 问题:数据库原理是我的专业课,非常重要,以后靠它吃饭,我一定要学好
选项:
A:正确
B:错误
答案: 【正确

第二章 关系数据理论 软件签到2

1、 问题:数据库原理课程非常重要,以后靠它吃饭,我一定要学好
选项:
A:正确
B:错误
答案: 【正确

第二章 关系数据理论 兴湘签到2

1、 问题:学校规定:本学期不能提前返校。
选项:
A:正确
B:错误
答案: 【正确

第二章 关系数据理论 软件签到3

1、 问题:In the relational model the term relation is used to refer to a table, while
the term tuple is used to refer to a row. Similarly, the term attribute refers to acolumn of a table.
选项:
A:正确
B:错误
答案: 【正确

第二章 关系数据理论 兴湘签到3

1、 问题:In the relational model the term relation is used to refer to a table, while
the term tuple is used to refer to a row. Similarly, the term attribute refers to acolumn of a table.(在关系模型中,术语关系用来指代表,元组用来指代行。类似的,术语属性用来指代表中的列)
选项:
A:正确
B:错误
答案: 【正确

【作业】第三章 SQL 第1次作业

1、 问题:这是一个保险公司的数据库,包含以下5个表:投保人(即驾驶员)、车辆、车主、交通事故、交通事故涉事人员等。请用CREATE TABLE语言创建这5个表,要求在数据类型上做合理的假设,确保声明主码和外码,其中加下划线的是主码。person(driver_id, name,address )car(license, model, year )accident(report_rumber, date ,location )owns(driver_id, license )participated(report_number, license, driver_id, damage_amount )
评分规则: 【 对于每一个表: SQL命令动词正确,4分 属性定义正确,8分(有外码)或4分(外外码) 主码正确 ,4分 外码正确,4分每一个表全对20分。

第三章 SQL 软件签到4

1、 问题:按照教学安排,今天还是学习第二章的内容
选项:
A:正确
B:错误
答案: 【错误

第二章 关系数据理论 第二章测验

1、 问题:In the relational database, data are stored in:
选项:
A:Table
B:Index
C:View
D:Transaction
答案: 【Table

2、 问题:Natural join is an additional operation in relational algebra, it can be replaced by which set of the following operations equivalently :
选项:
A:Select, Project
B:Cartesian-Product, Project
C:Cartesian-Product, Select, Project
D:Cartesian-Product, Select
答案: 【Cartesian-Product, Select, Project

3、 问题:Division is an additional operation in relational algebra, it can be replaced by which set of the following operations equivalently :
选项:
A:Select, Project, Cartesian-Product
B:Union, Project, Cartesian-Product
C:Select, Rename, Cartesian-Product
D:Set difference, Project, Cartesian-Product
答案: 【Set difference, Project, Cartesian-Product

4、 问题:Which of the following is WRONG in the relation rules?
选项:
A:There is no order on the rows.
B:There is no order on the columns.
C:Two tuples can be identical in all column values.
D:Multi-valued attributes are not permitted.
答案: 【Two tuples can be identical in all column values.

5、 问题:The constraint “In a base relation, NO attribute of a primary key can be null”, is called :
选项:
A:Entity integrity
B:Referential integrity
C:Check constraint
D:User defined constraint
答案: 【Entity integrity

6、 问题:A     contains a collection of interrelated data, a set of programs to access the data and an environment that is both convenient and efficient to use.
选项:
A: DBMS
B:Database
C:Database application
D:Data Schema
答案: 【 DBMS

7、 问题:Let R = ( A, B, C, D ), S = ( B, D ), the schema of relation ( R ÷ S ) is :
选项:
A:( A, B )
B:( A, C )
C:( B, D )
D:( B, C)
答案: 【( A, C )

8、 问题:Relational algebra consists of six basic operations: select, project, ____, set difference, cartesian product, and rename.
答案: 【(以下答案任选其一都对)union;
并;
合并

9、 问题:Relational algebra consists of six basic operations: select, ____, union, set difference, cartesian product, and rename.
答案: 【(以下答案任选其一都对)project;
投影

10、 问题:K is a ____ of R if values for K are sufficient to identify a unique tuple of each possible relation r(R).
答案: 【(以下答案任选其一都对)superkey;
超键;
超码

11、 问题:In history of data model development, there are four major different data models named as hierarchical data model, network data model, ______data model,and object-oriented data model.
答案: 【(以下答案任选其一都对)relational;
关系;
relation;
关系型

第三章 SQL 兴湘签到4

1、 问题:按照教学安排,今天还是学习第二章的内容
选项:
A:正确
B:错误
答案: 【错误

【作业】第三章 SQL 第2次作业

1、 问题:(建议在一个数据库上实际运行以下查询,使用本书的Web网站db-book.com上提供的样本数据。网站还提供了 如何建立一个数据库和加载样本数据的说明。)1. 使用大学模式(参见教材第6版第2章),用SQL写出如下查询。 a. 找出Comp.Sci. 系开设的具有3个学分的课程名称。 b. 找出名叫Einstein 的教师所教的所有学生的ID,保证结果中没有重复。 c. 找出教师的最高工资。 d. 找出工资最高的所有教师(可能有不止一位教师具有相同的工资)。 e. 找出2009年秋季开设的每个课程段的选课人数。 f. 从2009年秋季开设的所有课程段中,找出最多的选课人数。 g. 找出在2009年秋季拥有最多选课人数的课程段。 2. 使用大学模式,用SQL写出如下查询。 a. 找出所有至少选修了一门Comp.Sei.课程的学生姓名,保证结果中没有重复的姓名。 b. 找出所有没有选修在2009年春季之前开设的任何课程的学生的ID和姓名。 c. 找出每个系教师的最高工资值。可以假设每个系至少有一位教师。 d. 从前述查询所计算出的每个系最高工资中选出最低值。
评分规则: 【 每小题1分,共11分每小题结果正确给1分,否则给0分。

第三章 SQL 软件签到5

本门课程剩余章节答案为付费内容
本文章不含期末不含主观题!!
本文章不含期末不含主观题!!
支付后可长期查看
有疑问请添加客服QQ 2356025045反馈
如遇卡顿看不了请换个浏览器即可打开
请看清楚了再购买哦,电子资源购买后不支持退款哦
请输入手机号或商家订单号
打不开请联系客服QQ 2356025045 商家订单号在哪里?点此了解

商家订单号查看步骤

打开支付宝
方法一:我的 > 账单 > 账单详情 > 更多>复制商家订单号
方法二:我的 > 账单 >搜索关键字【网课小帮手】
> 账单详情 > 更多>复制商家订单号
方法三:联系客服QQ 2356025045
微信支付
我 > 支付 > 钱包 > 账单 > 账单详情

继续阅读