【单选题】【消耗次数:1】
It was not until she had arrived home __________ remembered her appointment with the doctor.
when she
that she
and she
she
参考答案:
复制
纠错
相关题目
【单选题】 It was not until she had finished all her work_____.
①  did she return
②  that she returned
③  when she returned
④  that did she return
【判断题】 She had her finger cut when she is paper-cutting.
①  正确
②  错误
【单选题】 She resorted to ____ when she had no money to buy foods for her children.
①  have stolen
②  steal
③  stole
④  stealing
【单选题】 She resorted to _____ when she had no money to buy foods for her children.
①  have stolen
②  steal
③  stole
④  stealing
【单选题】 When she was criticized, she claimed that it was outside her _____of responsibility.
①  field
②  limit
③  extent
④  range
【单选题】 Lindas parents died when she was a baby, and she was __________ by her aunt.
①  turned into
②  raised up
③  grown up
④  brought up
【单选题】 When she saw the clouds, she went back to the house to ____ her umbrella.
①  bring
②  fetch
③  take
④  carry
【单选题】 Although she wrote a lot of short stories and poems when she was very young, _____she was twenty five.
①  her first real success did not come until
②  her real first success came until not
③  since her first real success did not come until
④  not until her first real success
【单选题】 Although she wrote a lot of short stories and poems when she was very young, ____ she was twenty five.
①  her first real success did not come until
②  her real first success came until not
③  since her first real success did not come until
④  not until her first real success
【单选题】 _______ she tried her best, she didn’t succeed.
①  Though
②  When
③  If
④  After
随机题目
【单选题】 以下对二维数组a进行正确初始化的是()
①  inta[2][3]={{1,2},{3,4},{5,6}};
②  inta[][3]={1,2,3,4,5,6};
③  inta[2][]={1,2,3,4,5,6};
④  inta[2][]={{1,2},{3,4}};
【单选题】 以下程序执行后输出结果是() #include stdio.h main( ) { char s[]=\n123\\; printf(%d,%d\n,strlen(s),sizeof(s)); }
①  赋初值的字符串有错
②  6,7
③  5,6
④  6,6
【单选题】 若有定义int*x[3],b[10];则正确的赋值语句是()
①  x=b[0];
②  x=b;
③  x[0]=b[0];
④  x[0]=b[0];
【单选题】 若有int b[4]={0,1,2,3},*p则数值不为3的表达式是:()
①  p=s+2,*(p++)
②  p=s+3,*p++
③  p=s+2,*(++p)
④  s[3]
【单选题】 若有定义:int a[2][4];,则引用数组元素正确的是()
①  a[0][3]
②  a[0][4]
③  a[2][2]
④  a[2][2+1]
【单选题】 若a是int类型变量,()不是合法的C语句。
①  {intj;j++;}
② 
③  {;}
④ 
【单选题】 十进制数16的十六进制数是()
①  11
②  12
③  13
④  10
【单选题】 下面程序的运行结果是() #include stdio.h main( ) { char a[]=morning,t; int i,j=0; for(i=1;i if(a[j]j=i; t=a[j]; a[j]=a[7]; a[7]=a[j]; puts(a); }
①  mogninr
②  mo
③  morning
④  mornin
【单选题】 选择出合法的if语句(设int x,a,b,c;)()。
①  if(a==b)x++
②  if(a=b)x++
③  if(ab)x++
④  if(a=b)x++
【单选题】 若有定义int *f();则在此定义了一个()。
①  指向整型函数的指针变量
②  基类型为整型的指针变量
③  返回整型指针值的函数
④  不符合C 语言语法