【单选题】【消耗次数: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
随机题目
【单选题】 以下正确的叙述是( )。
①  goto语句中只能用于退出多层循环
②  switch语句中不能出现continue语句
③  只能用continue语句来终止本次循环
④  在循环中break语句不能独立出现
【单选题】 下述程序的运行结果( )。 #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