当前位置:首页
> Luz 第6532页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题: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的表达式是 @[A](2)A. ps+2B. s[2]C. ps[2]D. ps+=2,*psA.ps+2B.s[2]C.ps[2…
单选题:Prim’s algorithm is a ______
Prim’s algorithm is a ______@[B](2)A. Divide and conquer algorithmB. Greedy algorithmC. Dynamic ProgrammingD. Approximat…
单选题:在 2NF的基础上,消除了传递函数依赖的关系模式,必定是。
在 2NF的基础上,消除了传递函数依赖的关系模式,必定是。A.BCNFB.3NFC.2NFD.4NF答案:B…
单选题: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"); }…
单选题:下列关于一维数组的说法,正确的是()
下列关于一维数组的说法,正确的是()A.若有int a[10]={10,20,30,40};执行语句printf("%d",a);后,输出10B.int a[10]={0},则是将所有元素值都置0C.若有int a[10]={10,20,3…
单选题:若关系模式R中的属性都是主属性,则R至少属于。
若关系模式R中的属性都是主属性,则R至少属于。A.3NFB.BCNFC.4NFD.2NF答案:A…
单选题:执行下面语句的结果是()
执行下面语句的结果是()```dict = {'Name': 'Zara', 'Age': 7, 'Name': 'Manni'}dict.pop('Name')dict['Add']='Shanghai'dict.popitem()pri…
单选题:执行下面语句的结果是()
执行下面语句的结果是()```dict = {'Name': 'Zara', 'Age': 7, 'Name': 'Manni'}dict.pop('Name')dict['Add']='Shanghai'dict.popitem()pri…