【单选题】【消耗次数:1】
Do plan to arrive ______or a few minutes early for a job interview.
no time
on time
all the time
at a time
参考答案:
复制
纠错
相关题目
【单选题】 Fifteen minutes [] enough time for this exercise.
①  is
②  are
【单选题】 It’s ( )to arrive at 5:30 pm local time…
①  schedule
②  scheduled
③  scheduling
④  to scheduled
【单选题】 He will surely finish the job on time _______ he is left to do it in his own way.
①  in that
②  in case
③  as far as
④  so long as
【单选题】 We started out early in order that we ____ there in time.
①  would get
②  ought get
③  should get
④  had to
【单选题】 It was requested that all of the equipment _____in the agreed time.
①  erected
②  would be erected
③  be erected
④  will be erected
【单选题】 _______ all your time on this problem is not suitable.
①  Spending
②  To spend
③  Spend
【单选题】 Are you going to do it [填空] second time?
①  the
②  an
③  a
④  /
【单选题】 ____ for a long time, the fields are all dried up.
①  There has been no rain
②  Having no rain
③  There having been no rain
④  There being no rain
【单选题】 _____ for a long time, the fields are all dried up.
①  There has been no rain
②  Having no rain
③  There having been no rain
④  There being no rain
【单选题】 7. Does ________ matter if he cant finish the job on time?
①  this
②  that
③  he
④  it
随机题目
【单选题】 以下关于C语言程序中函数的说法正确的是()。
①  函数的定义可以嵌套,但函数的调用不可以嵌套
②  函数的定义不可以嵌套,但函数的调用可以嵌套
③  函数的定义和调用均不可以嵌套
④  函数的定义和调用都可以嵌套
【单选题】 若有定义:int a=3,b=2,c=1;并有表达式:①a%b,②a>b>c,③b&&c+1,④c+=1,则表达式值相等的是()。
①  ①和②
②  ②和③
③  ①和③
④  ③和④
【单选题】 若在I/O流的输出中使用控制符setfill()设置填充字符,应包括的头文件是()。
①  stdlib.h
②  iostream.h
③  fstream.h
④  iomanip.h
【单选题】 下面哪个选项不是面向对象编程的特征:()
①  封装
②  继承
③  多态
④  重用
【单选题】 下列描述中,属于抽象类的性质是()
①  可以说明虚函数
②  可以进行构造函数重载
③  可以定义友元函数
④  不能说明其对象
【单选题】 X是一个类,对于该类而言,下列哪种函数中没有this指针()
①  非静态成员函数
②  析构函数
③  友元函数
④  虚函数
【单选题】 作用域分辨符可以用来限定即将访问成员所在类的名称,其符号是()。
①  ::
②  ?:
③ 
④  \
【单选题】 C++控制台程序中必须有的函数是()。
①  #include
②  iostream.h
③  main
④  cout cin
【单选题】 在一个函数中,要求通过函数来实现一种不太复杂的功能,并且要求加快执行速度,选用()合适。
①  内联函数
②  重载函数
③  递归函数
④  嵌套调用
【单选题】 已知下面的class层次结构,其中每一个class都定义有一个defaultconstructor和一个virtualdestructor:classX{...};classA{...};classB:publicA{...};classC:publicB{...};classD:publicX,publicC{...};下面哪一个dynamic_cast会失败?()
①  D*pd=newD;A*pa=dynamic_cast(pd)
②  A*pa=newC;C*pc=dynamic_cast(pa)
③  B*pb=newB;D*pd=dynamic_cast(pb)
④  A*pa=newD;X*px=dynamic_cast(pa)