题库 第6389页
单选题:关系模式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"); }…