当前位置:首页
> Luz 第6546页
Luz 管理员
暂无介绍
89859 篇文章 33 次评论单选题:设有关系模式R(A,B,C),F={A→B,C→B}。相对于F,R的候选码为。
设有关系模式R(A,B,C),F={A→B,C→B}。相对于F,R的候选码为。答案:A…
单选题:学生表(id,name,sex,age,depart_id,depart_name),存在的函数依赖是id→{name,sex,
学生表(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},若只基于函数依赖进行讨
关系模式R(A,B,C,D,E),R中的属性均不可再分解,函数依赖集F={CD→A,CD→B,AB→E},若只基于函数依赖进行讨论,R的码是。答案:C…
单选题:In the following function, what is the ending condition of recur
In the following function, what is the ending condition of recursive programming?```int xFunction(int n){ if (n == 1)…
单选题:若有以下定义:
若有以下定义:```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 ______
Prim’s algorithm is a ______@[](2)A. Divide and conquer algorithmB. Greedy algorithmC. Dynamic ProgrammingD. Approximati…
单选题:19.有以下程序
19. 有以下程序```#includeint main( ){int i,j;for(i=3;i˃=1;i--){for(j=1; j˂=2; j++) printf("%d", i + j);printf("\n"); }…