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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

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

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

单选题:若有以下定义:

Luz5年前 (2021-05-10)868
若有以下定义:```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 ______

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

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

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

单选题:19.有以下程序

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

单选题:下列关于一维数组的说法,正确的是()

Luz5年前 (2021-05-10)2144
下列关于一维数组的说法,正确的是()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至少属于。

Luz5年前 (2021-05-10)1240
若关系模式R中的属性都是主属性,则R至少属于。A.3NFB.BCNFC.4NFD.2NF答案:A…

单选题:执行下面语句的结果是()

Luz5年前 (2021-05-10)946
执行下面语句的结果是()```dict = {'Name': 'Zara', 'Age': 7, 'Name': 'Manni'}dict.pop('Name')dict['Add']='Shanghai'dict.popitem()pri…

单选题:执行下面语句的结果是()

Luz5年前 (2021-05-10)739
执行下面语句的结果是()```dict = {'Name': 'Zara', 'Age': 7, 'Name': 'Manni'}dict.pop('Name')dict['Add']='Shanghai'dict.popitem()pri…

单选题:实现默认值数据完整性的关键字是()。

Luz5年前 (2021-05-10)1557
实现默认值数据完整性的关键字是()。答案:B…