A.conditionedB.boundC.confinedD.devoted
A. conditioned
B. bound
C. confined
D. devoted
查看答案
A.better moreB.more thanC.other thanD.less than
A. better more
B. more than
C. other than
D. less than
我国《公司法》和《证券法》规定,股票发行价格以超过票面金额的价格发行股票所得的溢价款项列入发行公司的()。
A. 盈余公积金
B. 资本公积金
C. 未分配利润
D. 法定公益金
关于Windows 2000 Server操作系统,下列说法错误的是()。
A. 组织单元是域中一些用户和组、文件与打印机等资源对象的集合
B. 它仍使用域作为基本管理单位
C. 它提供了活动目录服务,以方便网络用户查找
D. 它使用全局组和本地组的划分方式,以方便用户对组进行管理
以下程序的输出结果是 #include <iostream.h> void main () { int a=0, i; for (i=1; i<5; i++) { switch (i) { case 0 : case 3 : a+=2; case 1 : case 2 : a+=3; default : a+=5; } } cout<<a<<endl; return; }
A. 31
B. 13
C. 10
D. 20