-->
当前位置:首页 > Luz 第6546页
Luz

Luz 管理员

暂无介绍

89859 篇文章 33 次评论

单选题:设有关系模式R(A,B,C),F={A→B,C→B}。相对于F,R的候选码为。

Luz5年前 (2021-05-10)878
设有关系模式R(A,B,C),F={A→B,C→B}。相对于F,R的候选码为。答案:A…

单选题:学生表(id,name,sex,age,depart_id,depart_name),存在的函数依赖是id→{name,sex,

Luz5年前 (2021-05-10)1176
学生表(id,name,sex,age,depart_id,depart_name),存在的函数依赖是id→{name,sex,age,depart_id}; depart_id→depart_name,其满足( )。答案:B…

单选题:关系模式R(A,B,C,D,E),R中的属性均不可再分解,函数依赖集F={CD→A,CD→B,AB→E},若只基于函数依赖进行讨

Luz5年前 (2021-05-10)1125
关系模式R(A,B,C,D,E),R中的属性均不可再分解,函数依赖集F={CD→A,CD→B,AB→E},若只基于函数依赖进行讨论,R的码是。答案:C…

单选题:不列哪一项不是动态联编实现的条件?

Luz5年前 (2021-05-10)1278
不列哪一项不是动态联编实现的条件? 答案:D…

单选题:关系模式R中的属性全是主属性,则R的最高范式必定是( )。

Luz5年前 (2021-05-10)868
关系模式R中的属性全是主属性,则R的最高范式必定是( )。答案:C…

单选题:In the following function, what is the ending condition of recur

Luz5年前 (2021-05-10)2002
In the following function, what is the ending condition of recursive programming?```int xFunction(int n){ if (n == 1)…

单选题:若有以下定义:

Luz5年前 (2021-05-10)978
若有以下定义:```char s[20]="programming",*ps=s; ```则不能代表字符o的表达式是 @[](2)A. ps+2B. s[2]C. ps[2]D. ps+=2,*ps答案:A…

单选题:Prim’s algorithm is a ______

Luz5年前 (2021-05-10)1086
Prim’s algorithm is a ______@[](2)A. Divide and conquer algorithmB. Greedy algorithmC. Dynamic ProgrammingD. Approximati…

单选题:在 2NF的基础上,消除了传递函数依赖的关系模式,必定是。

Luz5年前 (2021-05-10)1685
在 2NF的基础上,消除了传递函数依赖的关系模式,必定是。答案:B…

单选题:19.有以下程序

Luz5年前 (2021-05-10)795
19. 有以下程序```#includeint main( ){int i,j;for(i=3;i˃=1;i--){for(j=1; j˂=2; j++) printf("%d", i + j);printf("\n"); }…