【单选题】【消耗次数:1】
A: Could you put the books on bookshelves, please? B: Of course. [填空] A: Thats all. Everything else has been done.
Its a pleasure to help.
Is that all?
Im free now.
How should I do it?
参考答案:
复制
纠错
相关题目
【单选题】 How many books do you have? I have [填空] book.Thats [填空] English book.
①  a,an
②  a,one
③  on,an
④  one,one
【判断题】 A: How are you today? B: Im all right.
①  正确
②  错误
【判断题】 A: Let me help you with that. B: Thats all right. I can manage.
①  正确
②  错误
【判断题】 A: Im sorry to disturb you. B: Thats all right.
①  正确
②  错误
【单选题】 A: Thank you. Dont trouble yourself. Im not thirsty at all. B: [填空] you wouldnt like a cold beer, or a coke?
①  Can you tell
②  Do you think
③  Do you mean
④  Are you sure
【单选题】 A: Do I have the pleasure to buy you a drink? B:[填空].
①  Its your pleasure
②  Its very kind of you
③  Youre too nice to me
④  You spend money again
【单选题】 A: Could you help me put up the posters on the wall? B: [填空].
①  I will
②  No problem
③  I would like
④  Thats a good idea
【单选题】 A: Hello, [填空] Can I help you? B: Yes, this is Lin Xiaoyan. Could I speak to Mark Strong, please?
①  Who are you?
②  Whos speaking?
③  Im the secretary.
④  ABHK Bank.
【单选题】 ____ we could not live at all.
①  If it was not for the sun
②  If it shouldn’t be for the sun
③  Were it not for the sun
④  Had it not been for the sun
【单选题】 19. -Do you remember our pleasant journey to Xi’an? -Of course. I remember everything ______ it happened yesterday.
①  as soon as
②  even though
③  rather than
④  as if
随机题目
【单选题】 下列程序执行后的输出结果是 #includevoid main( ) { int a=5,b=60,c; if (ab) {c=a*b;printf(%d*%d=%d\n,b,a,c);} else {c=b/a;printf(%d/%d=%d\n,b,a,c);} }
①  60/5=12
②  300
③  60*5=300
④  12
【单选题】 有如下程序: #includevoid main( ) { int a=2,b=-1,c=2; if (ab) if (b0) c=0; else c++; printf(%d\n } 该程序的输出结果是
①  0
②  1
③  2
④  3
【单选题】 下述对C语言字符数组的描述中错误的是
①  字符数组可以存放字符串
②  字符数组中的字符串可以整体输入、输出
③  可以在赋值语句中通过赋值运算符=对字符数组整体赋值
④  不可以用关系运算符对字符数组中的字符串进行比较
【单选题】 下面合法的C语言字符常量是
①  \t
②  A
③  65
④  A
【单选题】 未标识关系x≥y≥z,应使用C语言表达式
①  (x=)(y=z)
②  (x=y)AND(y=z)
③  (x=z)
④  (x=y)(y=z)
【单选题】 下面程序的输出是 int fun3(int x) {static int a=3; a+=x; return(a); } void main() {int k=2,m=1,n; n=fun3(k); n=fun3(m); printf(%d\n }
①  3
②  4
③  6
④  9
【单选题】 一个C语言的执行是从
①  本程序的主函数开始,到本程序的主函数结束
②  本程序的第一个函数开始,到本程序的最后一个函数结束
③  本程序的主函数开始,到本程序的最后一个函数结束
④  本程序的第一个函数开始,到本程序的主函数结束
【单选题】 C语言提供的合法的数据类型关键字是
①  Double
②  short
③  integer
④  Char
【单选题】 以下数组定义中不正确的是
①  int a[2][3];
②  int b[][3]={0,1,2,3};
③  int c[100][100]={0};
④  int a[3][]={{1,2},{1,2,3},{1,2,3,4}};
【单选题】 下列选项总,不正确的赋值语句是
①  ++t;
②  n1=(n2=(n3=0));
③  k=i=j;
④  a=b+c=1