【单选题】【消耗次数:1】
Have your examination results come ___________ yet?
at
through
across
to
参考答案:
复制
纠错
相关题目
【单选题】 The Brownings have not ____ yet and I doubt whether they will come.
①  turned in
②  turned out
③  turned up
④  turned to
【单选题】 “Are you ready for your paper?” “Not yet. I need___ to read through it.”
①  other three minutes
②  another three minutes
③  three other minutes
④  more three minutes
【单选题】 They _ on the programme for almost one week before I joined them, and now we on it as no good results have come out so far.
①  had been working; are still working
②  had worked; were still working
③  have worked; were still working
④  have worked; are still working
【单选题】 It may only be through repeated experiments _______ a baby will come to accept the idea _______ other people can have different views from what he or she has.
①  how;which
②  how;that
③  that;that
④  which;which
【单选题】 Have they had the broken windowpanes [填空] yet?
①  repalcing
②  to repalce
③  replaced
④  repalce
【单选题】 _______ difficulties we may come across, well help one another to overcome them.
①  Wherever
②  Whatever
③  However
④  Whenever
【单选题】 Before the final examination, some students have shown _______ of tension. They even have trouble in sleeping.
①  anxiety
②  marks
③  remarks
④  signs
【单选题】 14.He hasnt come yet.What do you consider _______ to him?
①  happens
②  hashappened
③  happening
④  tohappen
【单选题】 ____ the English examination, I would have gone to the concert last Sunday.
①  In spite of
②  But for
③  Because of
④  As for
【单选题】 _______ the English examination, I would have gone to the concert last Sunday.
①  In spite of
②  But for
③  Because of
④  As for
随机题目
【单选题】 当顺利执行了文件关闭操作时,fclose函数的返回值是()。
①  1
②  0
③  -1
④  一个非0值
【单选题】 下面叙述错误的是()。
① 
② 
③  预处理命令行必须以分号结束
④  C源程序中加入一些预处理命令是为了改进程序设计环境,提高编程效率
【单选题】
①  1
②  3
③  14
④  28
【单选题】
①  67,D
②  C,D
③  C,68
④  67,68
【单选题】 若有定义:intx,a;赋值语句a=(x%3==0)?0:1;与()语句不等价。
①  if(x%3!=0)a=1;elsea=0;
②  if(x%3)a=0;elsea=1;
③  if(x%3==0)a=0;elsea=1;
④  if(!(x%3==0))a=1;elsea=0;
【单选题】 以下程序段运行后x的值为()。inta[8]={1,2,3,4,5,6,7,8},i,x=0;for(i=0;ii++,i++)x=x+a[i];
①  36
②  16
③  20
④  18
【单选题】 下列语句中,符合C语言语法的赋值语句是()。
①  a=7+b+c=a+7;
②  a=7+b++=a+7;
③  a=7+b,b++,a+7;
④  a=7=b,c=a+7;
【单选题】 若有定义:structnode{intdata;structnode*next;};已建立如下图所示的链表:┌─┬─┐┌─┬─┐┌─┬─┐head→│2│┼→│4│┼→…→│28│┼→NULL└─┴─┘└─┴─┘└─┴─┘指针head指向链表首结点,以下函数的功能是()。voidfun(structnode*head){structnode*p=head;while(1){p=p-printf("%d",p-data);if(!p)break;}}
①  显示单向链表中第一个结点的数据
②  显示单向链表中最后一个结点的数据
③  显示单向链表中的所有数据
④  显示单向链表中除第一个结点外的所有数据
【单选题】
①  3
②  4
③  0
④  1
【单选题】 在C语言中,确定函数返回值的类型由(   )
①  return语句中的表达式类型决定
②  调用该函数的主函数类型决定
③  调用函数时临时决定
④  定义函数时所指定的函数类型决定