【单选题】【消耗次数:1】
She often says her greatest happiness ____ serving the handicapped children.
relies on
consists in
composes of
comprises in
参考答案:
复制
纠错
相关题目
【单选题】 She often says her greatest happiness _____serving the handicapped children.
①  relies on
②  consists in
③  composes of
④  comprises in
【判断题】 She often looks after her grandmother.
①  正确
②  错误
【单选题】 She resorted to ____ when she had no money to buy foods for her children.
①  have stolen
②  steal
③  stole
④  stealing
【单选题】 She resorted to _____ when she had no money to buy foods for her children.
①  have stolen
②  steal
③  stole
④  stealing
【单选题】 She always put her medication on the top of the shelf lest the children ____ it by mistake.
①  took
②  should take
③  had taken
④  would take
【单选题】 We often compare children ______ flowers.
①  with
②  . to
③  in
【判断题】 She often go to Nanjing.
①  正确
②  错误
【单选题】 Everybody likes her because she is always _______ .
①  Everybody likes her because she is always _______ .
②  cheerful
③  sad
④  selfish
【单选题】 She _________ the children not to make any noise.
①  tell
②  told
③  said
④  telling
【单选题】 She doesn’t speak ____ her friend, but her written work is excellent.
①  as well as
②  so often as
③  so much as
④  as good as
随机题目
【单选题】 已知 int x=30,y=50,z=80;以下语句执行后变量x、y、z的值分别为:。if (xy||xz)z=x; x=y; y=z;
①  x=50, y=80, z=80
②  x=50, y=30, z=30
③  x=30, y=50, z=80
④  x=80, y=30, z=50
【单选题】 若有定义:int a,b;,通过语句scanf(“%d#%d”,a,,能把整数3赋给变量a,5付给变量b的输入数据是()。
①  3 5
②  3,5
③  3#5
④  35
【单选题】 能正确表示x的取值范围在[0,100]和[-10,-5]内的表达式是。
①  (x=-10)||(x=-5)(x=0)||(x=100)
②  (x=-10)(x=-5)||(x=0)(x=100)
③  (x=-10)(x=-5)(x=0)(x=100)
④  (x=-10)||(x=-5)||(x=0)||(x=100)
【单选题】 写出下面程序的执行结果。main(){ int x=1,y=1,z=0;if(z0)if(y0) x=3;else x=5;printf(%d\tif(z=y0) x=3;else if(y= =0 ) x=5;else x=7;printf(%d\tprintf(%d\t}
①  1 7 0
②  3 7 0
③  5 5 0
④  1 5 1
【单选题】 若有定义:int x,y;char a,b,c;并有以下输入数据(此处,代表换行符)1,2A,B,C则能给x赋整数1,给y赋整数2,给a赋字符A,给b赋字符B,给c赋字符C的正确程序段是()。
①  scanf(x=%d,y=%d,x,a=getchar();b=getchar();c=getchar();
②  scanf(%d,%d,x,a=getchar();b=getchar();c=getchar();
③  scanf(%d,%d,%c,%c,%c,%c,%c,%c,x,y,a,a,b,b,c,
④  scanf(%d,%d,%c,%c,%c,x,y,a,b,
【单选题】 在C语言中,数字018是一个()。
①  十进制数
②  八进制数
③  十六进制数
④  非法数
【单选题】 若有定义:int x,y;char a,b,c;并有以下输入数据(此处,代表换行符)1 2A B C则能给x赋整数1,给y赋整数2,给a赋字符A,给b赋字符B,给c赋字符C的正确程序段是()。
①  scanf(x=%dy=%d,x,a=getchar();b=getchar();c=getchar();
②  scanf(%dy%d,x,a=getchar();b=getchar();c=getchar();
③  scanf(%d%d%c%c%c%c%c%c,x,y,a,a,b,b,c,
④  scanf(%d%d%c%c%c,x,y,a,b,
【单选题】 以下程序段:int i,a=3,b=2;i=(--a==b++)?--a:++b;printf(i=%d a=%d b=%d,i,a,b);输出结果是。
①  i=1 a=1 b=3
②  i=3 a=2 b=3
③  i=4 a=1 b=4
④  i=4 a=2 b=4
【单选题】 有如下嵌套的if语句if(ab)if(ac) else if(bc) else 以下选项中与上述if语句等价的语句是。
①  k=(ab)?a:b;k=(b<c)?b:c;
②  k=(ab)?((b<c)?a:b)((b>c)?b:c);
③  k=(ab)?((a<c)?a:c)((b<c)?b:c);
④  k=(ab)?a:b;k=(a<c)?a:c;
【单选题】 若有定义:int a,b;,通过语句scanf(“%d;%d”,a,,能把整数3赋给变量a,5付给变量b的输入数据是( )。
①  3 5
②  3,5
③  3;5
④  35