2,3,4,9,8,27,16,81,(),()
第1题:
下列程序执行后,变量a的值为 Dim a,b,C,d as single a=100:b=20:c=1000 if b>a Then d=a:a=b:b=d End if if c > a Then d=b:b=c:c=d End if
A.0
B.1000
C.20
D.100
第2题:
WhenperformingafulldatabasedisasterrecoverywithRMAN,inwhatorderwouldyouexecutethesesteps?()a.Restorethecontrolfilefromautobackups.b.RuntheRMANrestoreandrecovercommand.c.Restorethedatabasespfilefromautobackups.d.MaketheRMANbackupsetpiecesavailable.e.Openthedatabasewiththealterdatabaseopenresetlogscommand.f.Openthedatabasewiththealterdatabaseopencommand.
A.a,b,c,d,e,f
B.c,d,a,b,f
C.d,c,a,b,f
D. d,b,d,c,e
E. d,c,a,b,e
第3题:
下列程序执行后,变量a的值为______。 dim a, b, c, d as single a=100 b=20 c=1000 if b>a then d=a: a=b: b=d end if if c>a then d=a: a=c: c: d end if if c>b then d=b: b=c: c=d end if
A. 0
B.1000
C.20
D.100
第4题:
设a=“a”,b=“b”,c=“c”,d=“d”,执行语句x=Ilf((a<b)Or(c>d),“A”,“B”)后,x的值为
A.“a”
B.“b”
C.“B”
D.“A”
第5题:
输入序列为(A,B,C,D),不可能得到的输出序列是______.
A.(A,B,C,D)
B.(D,C,B,A)
C.(A,C,D,B)
D.(C,A,B,D)
第6题:
第7题:
第8题:
第9题:
第10题:
若变量a,b,c被定义为int类型,要通过键盘分别给a,b,c输入数据,则正确的输入语句是()。
第11题:
若在定义语句:inta,b,c;之后,接着执行以下选项中的语句,则能正确执行的语句是()
第12题:
(b/c/D)
(a/b/c/D)
(a/b/C)
(a/c/D)
第13题:
A.read(a,b,c);
B.scanf("%d%d%d",a,b,c);
C.scanf("%D%D%D",a,b,c);
D.scanf("%d%d%d",a,b,c);
第14题:
设a、b,c为int型变量,若从键盘给a、b,c输入数据,则正确的输入语句是( )
A.scanf("%d%d%d",a,b,c) ;
B.put("%d%d%d",a,b,c);
C.input("%d%d%d",a,b,c);
D.scanf("%d%d%d",&a,&b,&c);
第15题:
main()
{int a=4,b=5,c;
ifa<B)
{c=a*b;printf("%d,%d,%d\n",b,a,c);}
else
{c=b/a;printf("%d,%d,%d\n",b,a,c);}
}
A.4,5,12
B.20
C.5,4,20
D.12
第16题:
第17题:

第18题:

第19题:
第20题:

第21题:
第22题:
产品的类型有哪些?a、服务 b、软件 c、硬件 d、流程性材料() 。
第23题:
若变量已正确说明为int类型,要给a,b,c输入数据,以下正确的输入语句是()