【单选题】【消耗次数:1】
Anna was reading a piece of science fiction, completely _____ to the outside world.
having been lost
to be lost
losing
lost
参考答案:
复制
纠错
相关题目
【单选题】 23. Anna was reading a piece of science fiction, completely ____ to the outside world.
①  being
②  having lost
③  losing
④  lost
【判断题】 The “lost generation” was actually never lost.
①  正确
②  错误
【单选题】 The clock____________ was lost last week has been found.
①  who
②  whom
③  what
④  that
【单选题】 If the whole program __________ beforehand, a great deal of time and money would have been lost.
①  was not planned
②  were not planned
③  would not be planned
④  had not been planned
【单选题】 Sam, having forgotten to save his work [] lost all of his revisions when his computer crashed.
①  comma
②  dash
③  brackets
④  semicolon
【单选题】 She said she __________ lost a pen.
①  have
②  has
③  had
④  having
【单选题】 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
【单选题】 The epic Paradise Lost is based on the stories from _______.
①  The New Testament
②  The Old Testament
③  The Ancient Greek Myths
④  The Ancient Roman Myths
【单选题】 The young CEO lost his confidence and felt that hes an ( ).
①  deceiver
②  imposter
③  overseer
④  inferior
【单选题】 They are working hard to____ what they have lost.
①  make out for
②  keep up with
③  catch up with
④  make up for
随机题目
【单选题】
①  16,16
②  16,-16
③  -7,17
④  17,-7
【单选题】 若有以下定义:structnode{intdata;structnode*next;}*p,*q;已建立如下图所示的链表:┌──┬──┐┌──┬──┐...p→│data│next┼→│data│NULL│└──┴──┘└──┴──┘┌──┬──┐q→│data│next│└──┴──┘不能将指针q所指结点连到上图所示链表末尾的语句是()。
①  q-next=NULL;p=p-p-next=q;
②  p=p-p-next=q;q-next=NULL;
③  p=p-q-next=p-p-next=q;
④  q-next=p-p=p-p-next=q;
【单选题】 若已定义intx=5,y=9,z;语句z=x运行后z的值为()。
①  1
②  t
③  0
④  f
【单选题】 在循环语句的循环体中,break语句的作用是()。
①  继续执行break语句之后的循环体各语句
②  提前结束循环,接着执行该循环后续的语句
③  结束本次循环
④  暂停程序的运行
【单选题】 已有定义charstr1[15]={"computer"},str2[15];则语句用法正确的是()。
①  str2=str1;
②  str2="science";
③  scanf("%s",str2);
④  printf("%s",str1);
【单选题】 下面程序的运行结果是()。#includestdio.huniondata{inti;charc;doubled;}a[2];voidmain(){printf("%d\n",sizeof(a));}
①  16
②  8
③  4
④  2
【单选题】 若有定义:intx=10,y=8,a;则执行语句a=((--x==y)?x:y);后,变量a的值是()。
①  8
②  9
③  10
④  0
【单选题】 若有以下定义:structnode{intdata;structnode*next;}structnodem,n,k,*head,*p;已建立如下图所示的链表:mnk┌──┬──┐┌──┬──┐┌──┬──┐head→│data│next┼→│data│NULL│p→│data│next│└──┴──┘└──┴──┘└──┴──┘指针head指向变量m,m.next指向变量n,p指向变量k,不能把结点k插到m和n之间形成新链表的程序段是()。
①  p-next=head-m.next=p;
②  (*head).next=p;(*p).next=
③  head-next=p-next=head
④  -m.next=k.next=
【单选题】 若已定义:inta=6;floatb=1.5;要求输出形式为:6*1.50=9.00,应选用的正确输出语句是()。
①  printf("%d*%f=%f",a,b,a*b);
②  printf("%d*%.2f=%.2f",a,b,a*b);
③  printf("%d*%d=%.2f",a,b,a*b);
④  printf("%.2f*%.2f=%.2f",a,b,a*b);
【单选题】 若有以下定义:structnode{intdata;structnode*next;}structnode*p;已建立如下图所示的链表:┌──┬──┐┌──┬──┐┌──┬──┐p→│data│next┼→│data│next┼→...→│data│NULL│└──┴──┘└──┴──┘└──┴──┘指针p指向第一个结点,能输出链表所有结点的数据成员data的循环语句是()。
①  while(p!=NULL){printf("%d,",p-p++;}
②  while(p){printf("%d,",p.data);p=p-}
③  for(;p!=NULL;p++)printf("%d,",p
④  -for(;p;p=p-next)printf("%d,",(*p).data);