【单选题】【消耗次数:1】
HespokesoquicklythatIdidn’t____whathesaid
makefor
makesure
makeover
makeout
参考答案:
复制
纠错
相关题目
【单选题】 06. He spoke so quickly that I didn t _________ what he said.
①  makefor
②  makesure
③  makeover
④  makeout
【单选题】 若f(t)=t^3+1,则f(t^3+1)= ( )
①  t^3+1
②  t^6+2
③  t^9+2
④  t^9+3t^6+3t^3+2
【单选题】 某工程需水泥360t,甲地可供100t,原价210元/t,乙地可供120t,原价220元/t,丙地可供140t,原价230元/t,则水泥的加权平均原价为【】      
①  221.11元/t
②  220.00元/t
③  210.00元/t
④  230.00元/t
【单选题】 T/T指的是
①  信汇
②  电汇
③  票汇
④  家信用证
【单选题】 配对t检验和成组t检验相比
①  更不容易发觉两总体均数间存在的差别
②  统计检验效率更高
③  不论在什么条件下都有同样的统计检验效率
④  不论在什么条件下都不能有同样的统计检验效率
【单选题】 函数模板定义如下: template Max( T a, T b ,T }下列选项正确的是( )
①  int x, y; char z; Max(x, y, z);
②  double x, y, z; Max( x, y, z);
③  int x, y; float z; Max( x, y, z);
④  float x; double y, z; Max( x,y, z);
【单选题】 t<t0.05(v),统计上可认为( )
①  两总体均数,差别无显著性
②  两总体均数,差别有显著性
③  两样本均数,差别无显著性
④  两样本均数,差别有显著性
【单选题】 若INDEX(S,T)表示求T在S中的位置的操作,则对于S=“Beijing&Nanjing”,T=“jing”,INDEX(S,T)=( )。
①  2
②  3
③  4
④  5
【单选题】 以下程序的运行结果是()。voidmain(){intm,n=1,t=1;if(t==0)t=-t;elsem=n=0?7:3;printf("%d\n",m);}
①  3
②  -1
③  7
④  1
【单选题】 函数模板定义如下: templateMax( T a, T b ,T c){c=a+b;}下列选项正确的是( )
①  int x, y; char z; Max(x, y, z);
②  double x, y, z; Max( x, y, z);
③  int x, y; float z; Max( x, y, z);
④  float x; double y, z; Max( x,y, z);
随机题目
【单选题】 下述程序的运行结果( )。 #includevoid main() { char ch; int i=0; for(ch=achzch++) { printf(%c ,ch); if(i%10==0) printf(\n } printf(\n }
①  a b c d e f g h i j k l m n o p q r s t u v w x y z
②  a b c d e f g h i j k l m n o p q r s t u v w x y z
③  a b c d e f g h i j k l m n o p q r s t u v w x y z
④  a b c d e f g h i j k l m n o p q r s t u v w x y z
【单选题】 若有如下语句 int do { printf (%d\n,x-=2);}while(!(--x)); 则上面程序段( )。
①  输出的是1
②  输出的是1和-2
③  输出的是3和0
④  是死循环
【单选题】 下述程序的运行结果( )。 #includevoid main() { int i; for(i=1;i+1;i++) { if(i4){printf(%d\t,i++);break;} printf(%d\t,i++); } }
①  1 3 5
②  1 2 3
③  1 3 4
④  1 4 5
【单选题】 若i为整形变量,则以下循环执行次数是( )。 for (i=2;i==0) printf(%d,i--)
①  无限次
②  0次
③  1次
④  2次
【单选题】 #includevoid main() { int n=4; while(n--) printf(%d\n,--n); }
①  2 0
②  1 0
③  2 1
④  3 0
【单选题】 以下程序段的运行结果是( )。 for(y=1;y) y=((x=3*y,x+1),x-1); printf(x=%d,y=%d,x,y);
①  x=27,y=27
②  x=12,y=13
③  x=15,y=14
④  x=y=27
【单选题】 下述程序的运行结果( )。 #includevoid main() { int n; for(n=1;nn++) { if(n%3==0)continue; printf(%d } }
①  12345678
②  124689
③  12457810
④  1234456
【单选题】 以下描述中正确的是( )。
①  由于do_while循环中循环体语句中能是一条可执行语句,使用循环体内不能使用复合语句。
②  do_while循环由do开始,用while结束,在while(表达式)后面体题中,一定要有能使while后表达式值变为零(假)的操作。
③  .do_while循环中,根据情况可以省略while
【单选题】 以下程序输出结果是( )。 Main() {int x=2,y=-1,z=2; if(xy) if(y0) z=0; else z+=1; printf(%d\n }
①  3
②  2
③  1
④  0
【单选题】 若有条件表达式(exp)?a++:b--,则以下表达式中能完全等价于表达式(exp)的是( )。
①  (exp==0)
②  (exp!=0)
③  (exp==1)
④  (exp!=1)