【单选题】【消耗次数:1】
He cannot be tired _______ he has walked only half a mile.
since
whether
when
as long as
参考答案:
复制
纠错
相关题目
【判断题】 Ever since he arrived, he has been complaining constantly about the weather.
①  正确
②  错误
【单选题】 She was wondering whether he has been writing anything new ____
①  late
②  later
③  latter
④  lately
【单选题】 20. Only when he had handed in his exam paper ____ he had made several mistakes.
①  he has realized
②  does he realize
③  has he realized
④  did he realize
【单选题】 He has been there, [填空]?
①  hasnt he
②  has he
③  does he
④  doesnt he
【单选题】 He cannot ____ a car, for he does not earn much money.
①  obtain
②  afford
③  donate
④  consume
【单选题】 ____ is essential to a successful scientist; he cannot hope to make any progress if he cannot work in a controlled way.
①  Discipline
②  Decision
③  Declaration
④  Dependence
【单选题】 When he was 65,he[填空] that he didn’t want to stop
①  decided
②  decides
③  will decide
④  is deciding
【单选题】 If only he __________ what I tell him, but he won’t.
①  had done
②  would do
③  would have done
④  has done
【单选题】 When he was a boy, he used to go there and watch ____.
①  to repair bicycles
②  bicycles to be repaired
③  bicycles being repaired
④  repairing bicycles
【单选题】 I was awfully tired when I got home from work, but a half hour nap ____ me.
①  revived
②  released
③  relieved
④  recovered
随机题目
【单选题】 不属于串行通信的工作模式的是( )。
①  单工
②  半单工
③  半双工
④  全双工
【单选题】 串行口控制寄存器SCON存放串行口的控制和状态信息,地址为( )H。
①  96
②  97
③  98
④  99
【单选题】 C++中函数返回值的类型是由(????)决定的。
①  return语句中表达式的类型?
②  函数定义时的类型
③  调用函数时的调用语句?
④  系统根据结果
【单选题】 以下叙述中不正确的是(????)
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量
【单选题】 以下正确的说法是(????)
①  用户调用标准库函数前,必须重新定义
②  用户可以重新定义标准库函数,若如此,该函数将失去原有含义
③  系统不允许用户重新定义标准库函数
④  用户调用标准库函数前,不必使用预编译命令将该函数所在文件包括到用户源文件中
【单选题】 以下说法中正确的是(????)
①  C++程序总是从第一个定义的函数开始执行
②  C++程序总是从main函数开始
③  C++函数必须有返回值,否则不能使用函数
④  C++程序中有调用关系的所有函数必须放在同一个程序文件中
【单选题】 函数重载是指(????)
①  两个或两个以上的函数取相同的函数名,但形参的个数或类型不同
②  两个以上的函数取相同的名字和具有相同的参数个数,但形参的类型可以不同
③  两个以上的函数名字不同,但形参的个数或类型相同
④  两个以上的函数取相同的函数名,并且函数的返回类型相同
【单选题】 以下函数的返回结果是(????) int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度
②  将字符串x连接到字符串p后面
③  将字符串x复制到字符串p中
④  将字符串x反向存放
【单选题】 函数原型语句正确的是(????)
①  int Function(void a);
②  void Function (int);
③  int Function(a);?
④  void int(double a);
【单选题】 为了提高程序的运行速度,可将不太复杂的功能用函数实现,此函数应选择(????)。
①  内联函数
②  重载函数
③  递归函数
④  模板