【单选题】【消耗次数:1】
A: How long have you been here?B: Not for long, only about five minutes. Alice and Monica ______ here with me.
have walked
had walked
were walking
walked
参考答案:
复制
纠错
相关题目
【单选题】 For a long time, they were in ______ silence and walked without saying ______ word.
①  A.a ,the
②  B.the, a
③  C./, a
④  D.the ,an
【单选题】 – How long have you been graduated from your college?–
①  Yes, Ive been graduated.
②  Ive been graduated for five years.
③  I graduated from my college last year.
④  yes
【单选题】 —How long have you been graduated from your college?— .
①  Yes, I’ve been graduated
②  I’ve been graduated for five years
③  I graduated from my college last year
④  I graduat from my college last year
【单选题】 —I’m sorry to keep you waiting. —Oh, not at all. I___ here only a few minutes.
①  have been
②  had been
③  was
④  will be
【单选题】 He cannot be tired _______ he has walked only half a mile.
①  since
②  whether
③  when
④  as long as
【判断题】 A: How have you been? B: Fine.
①  正确
②  错误
【判断题】 A: How have you been these years? B: Not too bad.
①  正确
②  错误
【单选题】 This book has been in the works so long that I have lost _____of most of the sources found for me by the staff of the library.
①  trace
②  trail
③  track
④  touch
【单选题】 Do you have [填空] shrimps? ---Here they [填空] .
①  any,are
②  some,is
③  any,be
④  some,are
【单选题】 -Weve worked for a long time, what about stopping a while to have a rest?-_____________________.
①  I like it.
②  You are wonderful.
③  Thats a good idea.
④  ok
随机题目
【单选题】 ()能正确定义一个指向函数的指针。
①  int*p()
②  int(*p)()
③  (int*)p()
④  int(*p())
【单选题】 若有定义:inta,b;floatx,则以下不符合C语言语法的表达式是()。
①  x%7
②  x/=a-b
③  a=b=2
④  x=(float)a/b
【单选题】 以下程序的运行结果是()。func(inta,intb){intc;c=(ab)?(a-b):(a+b);return(c);}main(){intx=7,y=3;printf("%d\n",func(x,y));}
①  3
②  4
③  7
④  10
【单选题】 设enumcolor{red,yellow=2,blue,white,black}r=white;,执行printf("%d",r);后的输出结果是(   )
①  0
②  1
③  3
④  4
【单选题】 若有定义:structteacher{intnum;charsex;intage;}teacher1;则下面叙述错误的是()。
①  struct是结构类型的关键字
②  structteacher是用户定义的结构类型
③  num、sex、age都是结构变量teacher1的成员
④  teacher1是结构类型名
【单选题】 若有定义:floatx=3.5,y=3.6;则表达式()的值为6。
①  (int)x+(int)y
②  x+y
③  (int)(x+y)
④  int(x+y)
【单选题】 若定义inta=-5,b=-8,c=-12;则表达式a=b||bc的值为()。
①  变量i的值
②  变量j的值
③  0
④  1
【单选题】 若已定义:intm=7,n=4;floatx=3.0,y=8.0,k;则执行语句k=m/2+n*x/y;后,变量k的值是()。
①  3
②  4
③  4.5
④  5
【单选题】 下面函数调用语句含有实参的个数为()。temp((a,b,c),(x,y))
①  2
②  3
③  4
④  5
【单选题】 若已定义inta;不会产生死循环的语句是()。
①  for(;;a+=2);
②  for(a=10;;a--);
③  for(;(a=getchar())!=\n;);
④  while(-1){a++;}