【单选题】【消耗次数:1】
He ____the tears on her face when he heard the relatives walking into the room.
put off
came out
wiped away
move on
参考答案:
复制
纠错
相关题目
【单选题】 Before he came to New York, he had never heard a single English word().
①  speak
②  to speak
③  spoke
④  spoken
【单选题】 10.Her face lighted___________when she heard the good news.
①  down
②  to
③  with
④  up
【单选题】 He____________ her out of her money.
①  chatted
②  changed
③  cheated
④  chose
【单选题】 When he came to,he found himself________on a chair,with his hands________back.
①  to sit;tying
②  sitting;tying
③  seating;tied
④  seated;tied
【单选题】 When we came back, he found his bicycle ____
①  was stolen
②  had stolen
③  had been stolen
④  is stolen
【多选题】 He_____________ to be reading when his mother came in.
①  drew a conclusion
②  nothing but
③  made himself seem
④  pretended
【单选题】 When he came back after an absence of 20 years, he found his hometown completely ____. ?
①  changing ?
②  to be changed ?
③  to change ?
④  changed ?
【单选题】 19. When he came to, he found himself _____ on a chair, with his hands _____ back.
①  to sit; tying
②  sitting; tying
③  seating; tied
④  seated; tied
【判断题】 When I saw him, he was cleaninging his room.
①  正确
②  错误
【单选题】 Joseph was very lucky ____ with his life; he almost did not get out of the room.
①  to escape
②  to have escaped
③  to escaping
④  to be escaping
随机题目
【单选题】 下面有关基类和派生类的说法中,错误的是()
①  派生类可以增添一些基类中没有的成员
②  派生类中可出现与基类同名的成员(若是成员函数则参数的个数和类型相同),但会出现同名覆盖现象;若要引用或调用基类中同名的成员,必须用访问域控制符(基类::成员)加以指明
③  派生类可以重载基类中的成员函数
④  派生类可以有选择性地继承基类中的某些成员,删除不需要的成员
【单选题】 类的概念是()
①  对象的抽象。
②  同一类记录的集合。
③  同一类数据的集合。
④  所有对象的集合。
【单选题】 有以下变量说明,下面不正确的赋值语句是() int a=5,b=10,c; int ?p1=&a,?p2=&b;
①  ?p2=b;
②  p1=a;
③  p2=p1;
④  c=?p1?(?p2)。
【单选题】 在32位处理器上,有如下的结构定义:structfoo{chara[8];intc;longd;shortb;};表达式&(((structfoo*)0)->b)的值为:()
①  0
②  3
③  16
④  不确定
【单选题】 在下列模板说明中,正确的是()
①  template〈typename T1,T2〉
②  template〈class T1,T2〉
③  template〈typename T1,typename T2〉
④  template(typedef T1,typedef T2)
【单选题】 下列运算符中,不能用于浮点数操作的是()。
①  ++
②  +
③  *=
④  &(双目)
【单选题】 假设有说明int a=0;double x=5.16;,则在以下语句中,()属于编译错误。
①  x=a/x;
②  x=x/a;
③  a=a%x;
④  x=x?a;
【单选题】 在C++中使用流进行输入输出,其中专用于从键盘进行输入的流是()
①  cerr
②  cin
③  cout
④  cfile
【单选题】 下列关于字符串的描述中,错误的是()。
①  一维字符数组可以存放一个字符串
②  二维字符数组可以存放多个字符串
③  可以使用一个字符串给二维字符数组赋值
④  可以用一个字符串给二维字符数组初始化
【单选题】 假定一个类的构造函数为“B(intax,intbx):a(ax),b(bx){}”,执行“Bx(1,2),y(3,4);x=y;”语句序列后x.a的值为()
①  1
②  2
③  3
④  4