【单选题】【消耗次数:1】
10. The coffee is very weak. I like it a bit ______.
strong
heavier
stronger
heavy
参考答案:
复制
纠错
相关题目
【单选题】 My father used to be very weak,_________ now he is much stronger.
①  but
②  at
③  and
④  when
【单选题】 I’d like to take you to the coffee house on the corner.
①  Thank you. You shouldn’t’ do that
②  Thanks, I’d like to go with you
③  No, you can’t say so
④  No, no, You can’t do that
【单选题】 10. It was very hot yesterday, but it is ____today.
①  even hotter
②  more hotter
③  much more hot
④  much hot
【单选题】 A: I like this flat very much, but Id like to come and see it on Friday at 5 oclock. Will that be convenient? B: [填空].
①  Its good for you
②  Thats right
③  Its thoughtful of you
④  Thats fine with me
【单选题】 10. I _______ trouble finding the place.
①  didn’t have many
②  haven’t a great deal of
③  didn’t have much
④  hadn’t a lot of
【单选题】 15. While I like the dress very much, I cant afford it. The word “while” means ______.
①  when
②  although
③  as long as
④  whereas
【单选题】 10. _____ was ________ who I met in the museum this morning.
①  him
②  he
③  That; he
④  That; him
【单选题】 A: [填空]? B: Id like a cup of coffee.
①  What do you want
②  What are you looking for
③  What can I do for you
④  Do you want to buy anything
【单选题】 30. -Would you like to have tea or coffee? - ____.
①  Either will do
②  Neither do I
③  It doesn’t matter
④  Yes, please
【单选题】 Would you like [填空] another cup of coffee?
①  to drink
②  drink
③  drank
④  drinking
随机题目
【单选题】 对下面程序描述正确的是()。#includestdio.h#includestdlib.hvoidmain(){FILE*in,*out;if((in=fopen("file1.txt","a+"))==NULL){printf("cannotopenfile1\n");exit(0);}if((out=fopen("file2.txt","a+"))==NULL){printf("cannotopenfile2\n");exit(0);}while(!feof(out))fputc(fgetc(out),in);fclose(in);fclose(out);}
①  程序实现在屏幕上显示磁盘文件file1.txt的内容
②  程序实现将磁盘文件file2.txt复制到磁盘文件file1.txt
③  程序实现将两个磁盘文件file1.txt和file2.txt的内容合二为一
④  程序实现在屏幕上显示磁盘文件file2.txt的内容
【单选题】 以下程序运行后,a的值是()。main(){inta,b;for(a=1,b=1;aa++){if(b=20)break;if(b%3==1){b+=3;continue;}b-=5;}}
①  101
②  100
③  8
④  7
【单选题】 若有定义:inta=3;语句a+=a-=a*a;运行后,a的值为()。
①  0
②  -3
③  -12
④  -6
【单选题】 若有函数定义:intfunc(){staticintm=0;returnm++;}以下程序段运行后屏幕输出为()。inti;for(i=1;ii++)func();printf("%d",func());
①  0
②  1
③  4
④  5
【单选题】 设有说明intx=0,y=2;则执行if(x=0)y=1+x;elsey=x-1;后,变量y的值是(   )
①  -1
②  0
③  1
④  2
【单选题】 下列中错误叙述的是()。
①  C语言中的文件是一个字节流或二进制流
②  可以以只读方式、只写方式或读写方式打开一个文本文件
③  在程序中对文件进行了写操作后,必须先关闭该文件然后再打开,才能读到第1个数据
④  当对文件的写操作完成之后,必须将它关闭,否则可能导致数据丢失
【单选题】 数组元素下标的数据类型为()。
①  整型常量、字符型常量或整型表达式
②  字符串常量
③  实型常量或实型表达式
④  任何类型的表达式
【单选题】 若已定义intx=-16,y=-12,z;语句z=x运行后z的值为()。
①  t
②  1
③  f
④  0
【单选题】 若有定义:structstudent{intnum;charname[8];charsex;floatscore;}stu1;则变量stu1所占用的内存字节数是()。
①  15
②  16
③  8
④  19
【单选题】 若有定义:structdata{chara;floatb[3];longc;}d1;则变量d1的长度是()。
①  15
②  12
③  4
④  17