【单选题】【消耗次数:1】
3.This little girl began to show the sign of ______ her brother in spoken English.
better
surpassing
exceeding
beyond
参考答案:
复制
纠错
相关题目
【单选题】 He looked at the little girl, _________ where he had seen her before.
①  wondering
②  wondered
【单选题】 Last month, the little girl _______ well enough by the neighbors while her parents were volunteering.
①  is cared for
②  was cared for
③  will be cared for
④  cares for
【单选题】 And there, almost ____ in the big chair, sat her little brother, who never had to be told to keep quiet.
①  ?having lost
②  ?losing
③  ?to be lost
④  ?lost
【单选题】 And there,almost________in the big chair,sat her little brother,who never had to be told to keep quiet.
①  having lost
②  losing
③  to be lost
④  lost
【单选题】 6.And there, almost____in the big chair, sat her little brother, who never had to be told to keep quiet.
①  having lost
②  losing
③  to be lost
④  lost
【单选题】 Tom won the first prize of oral English contest, which is beyond his ______.
①  reputation
②  contribution
③  expectation
【单选题】 _________ the teacher’s voice, the little girl became nervous.
①  Have heard
②  Hearing
③  Heard
④  Hear
【单选题】 Neither Sandynor her brother ____ the concert.
①  is going to
②  are going to
③  are going to go
④  is go
【单选题】 For formal English we’d better choose _______.
①  peculiar words
②  obsolete words
③  words of intensity
④  peculiar idioms
【单选题】 _______ girl dressed _______ black is her sister Rose.
①  A; in
②  A; on
③  The; on
④  The; in
随机题目
【单选题】 一个C语言程序的基本组成单位是( )。
①  主程序
②  子程序
③  过程
④  函数
【单选题】 下列程序执行后的输出结果是_______.#include stdio.h void main( ) { int a=5,b=60,c; if (ab) {c=a*b; printf(%d*%d=%d\n,b,a,c);} else {c=b/a; printf(%d/%d=%d\n,b,a,c);} }
①  60/5=12
②  300
③  60*5=300
④  12
【单选题】 以下数组定义中,错误的是( )。
①  int a[]={1,2,3};
②  int a[5]={1,2,3};
③  int a[3]={2,3,4,5};
④  int a[5],b;
【单选题】 下列哪组数据能存入数组中( )
①  “吕布”、“貂蝉”、“刘备”
②  100、98、‘A’、3.5
③  12.5、17.9、33.7
④  12、17、33
【单选题】 按照下题选出正确的输出结果如果有如下定义:int a[3][4]={{1, 2, 3, 4}, {5, 6, 7, 8},{9, 10, 11, 12}};,那么a[2][1]元素的结果是()?
①  12
②  11
③  10
④  9
【单选题】 C语言中,逻辑“假“等价于( )。
①  大于零的数
②  大于零的整数
③  0
④  非零的整数
【单选题】 指针变量定义格式正确的是
①  int a
②  int *p
③  int a *
④  * int a
【单选题】 以下函数fun的返回值类型为( )。fun(double x){ ……}
①  int
②  void
③  无法确认类型
④  double
【单选题】 下列说法不正确的是()
①  for循环用于循环次数已知的情况更加方便。
②  for的特例:for(变量=终值;变量初值;变量--)
③  do…while循环的循环体至少执行一次
④  循环体里不能有if 语句
【单选题】 若有说明语句 int a[10],*p=a;对数组元素正确的引用是
①  a[p]
②  p[a]
③  *(p+1)
④  p+2