【单选题】【消耗次数:1】
At this moment she____________ a pilot coming in.
recovered
bought
noticed
wanted
参考答案:
复制
纠错
相关题目
【判断题】 A: Just wait a moment. Im coming soon. B: Take it easy.
①  正确
②  错误
【单选题】 I noticed she avoids making any reference _______ her first husband in her latest
①  with
②  in
③  on
④  to
【单选题】 She asked me ?[填空]he was coming the next day.
①  who
②  that
③  which
④  whether
【单选题】 It is ____ with the customer not to let the shop assistants guess what she really likes and wants until the last moment.
①  in her honor
②  on her honor
③  a point of honor
④  an honor
【单选题】 It is _____ with the customer not to let the shop assistants guess what she really likes and wants until the last moment.
①  in her honor
②  on her honor
③  a point of honor
④  an honor
【单选题】 I noticed her ____ a pen from the ground.
①  to pick out
②  to pick up
③  pick out
④  pick up
【单选题】 25. A pilot should be responsible ____ the safety of all the passengers on board.
①  against
②  for
③  at
④  with
【单选题】 I suddenly noticed someone ____________ at me near the door of the court.
①  stare
②  stared
③  stares
④  staring
【单选题】 By nine o’clock I ____ that my guests were not coming.?
①  recognized ?
②  realized ?
③  understood ?
④  noticed?
【单选题】 I bought the fruit [填空] the supermarket.
①  in
②  on
③  above
④  out
随机题目
【单选题】 对C++中主函数描述正确的是
①  名称为main,可为多个
②  名称不限,可为多个
③  名称为main,必须有且只能有—个
④  名称不限,必须有且只能有—个
【单选题】 在C++中不返回任何类型的函数应该说明为()
①  int
②  char
③  void
④  double
【单选题】 使用地址作为实参传给形参,下列说法正确的是()
①  实参是形参的备份
②  实参与形参无联系
③  形参是实参的备份
④  实参与形参是同一对象
【单选题】 在下列成对的表达式中,运算结果类型相同的一对是( )
①  7/2和0/0
②  7/0和7/2
③  0/2和7/2
④  0/0和0/2
【单选题】 在函数定义中的形参属于()
①  全局变量
②  局部变量
③  静态变量
④  寄存器变量
【单选题】 在函数调用时,如某一默认参数要指明一个特定值,则有( )
①  其之前所有参数都必须赋值
②  其之后所有参数都必须赋值
③  其前、后所有参数都必须赋值
④  其前、后所有参数都不必赋值
【单选题】 下列哪个编译指令属于条件编译指令( )
①  #include
②  #define
③  #else
④  #pragma
【单选题】 设存在函数int max(int,int)返回两参数中较大值,若求22,59,70三者中最大值,下列表达式不正确的是( )
①  int m = max(22,max(59,70));
②  int m = max(max(22,59),70);
③  int m = max(22,59,70);
④  int m = max(59,max(22,70));
【单选题】 设有函数T Sum(T x,T y){return x+y;},其中T为模板类型,则下列语句中对该函数错误的使用是( )
①  Sum(1,2);
②  Sum(0,2);
③  Sum(‘A’,‘C’);
④  Sum(A,C);
【单选题】 已知:p是一个指向类A数据成员m的指针,A1是类A的一个对象。如果要给m赋值为5,正确的是()
①  Ap=5;
②  A1->p=5;
③  A*p=5;
④  *Ap=5;