【单选题】【消耗次数:1】
I’msorry.Ilostthekey.______________.
Well,it’sOK
No,it’sallright
Youarewelcome
Youarewrong
参考答案:
复制
纠错
相关题目
【单选题】 ---I’msorry.Ilostthekey.---______________.
①  Well,it’sOK
②  No,it’sallright
③  Youarewelcome
④  Youarewrong
【单选题】 —I’msorry.Ilostthekey.—____________<br/>
①  Well,it’sOK.
②  No,it’sallright.
③  Youarewelcome.
④  Youarewrong.
【单选题】 If I had had enough time, I __________ it well.
①  would do
②  would have done
【单选题】 He as well as I ____ to go boating.
①  want
②  wants
③  enjoy
④  enjoys
【多选题】 A: I think the boy can do it well.B:_________ .
①  Certainly
②  Sure
③  I agree
④  Ill do it
【判断题】 He as well as I agree with you on that point.
①  正确
②  错误
【单选题】 I _______ sleep very well, but then I started doing yoga and it really helps.
①  didn’t use to
②  used to
③  was used to
④  wasn’t used to
【单选题】 I get_______ my colleagues very well.
①  on
②  on with
③  over
【单选题】 Well, goodbye. I____________ our conversation very much.
①  enjoy
②  enlarge
③  enlighten
④  enable
【判断题】 A: What do you do? B: I do well in my studies.
①  正确
②  错误
随机题目
【单选题】 标准输入设备的文件流标识符是( )。
①  stdin
②  stdout
③  stderr
④  stdio
【单选题】 从一个数据文件中读入以换行符结束的一行字符串的函数为( )。
①  gets()
②  fgets()
③  getc()
④  fgetc()
【单选题】 下面的标识符中,( )具有全局级作用域。
①  函数形参
②  全局变量
③  内部静态类标识符
④  自动变量符
【单选题】 下面的标识符中,( )是文件级作用域。
①  函数形参
②  语句标号
③  外部静态类标识符
④  自动类标识符
【单选题】 假定一个链表的表头指针为f,结点结构为(data,next),则向该链表的表头插入一个由p所指向的结点时,应执行的操作为p->next=f和( )。
①  p=f->next
②  f=p->next
③  f=p
④  f->next=p
【单选题】 假定一个函数的参数说明为const int* a,则在函数体中执行( )操作非法。
①  printf(“%d”,*a)
②  a==NULL
③  *a=20
④  a=NULL
【单选题】 要把一个整形指针p转换为字符指针,则采用的强制转换表达式为( )。
①  (int*)p
②  (int)*p
③  (char*)p
④  (char)*p
【单选题】 假定p是一个指向float型数据的指针,则p+1所指数据的地址比p所指数据的地址大( )字节。
①  1
②  2
③  4
④  8
【单选题】 假定p所指对象的值为25,p+1所指对象的值为42,则*p++的值为( )。
①  25
②  42
③  26
④  43
【单选题】 假定要访问一个结构指针p所指对象中的b指针成员所指向的对象,则表示方法为( )。
①  p->b
②  p.b
③  *(p->b)
④  *(b->p)