【单选题】【消耗次数:1】
——Are you content with her lecture? ——Nowhere near that. It ____.
mayhavebeengood
couldn’thavebeenworse
couldn’thavebeenworse
mustbebetter
参考答案:
复制
纠错
相关题目
【单选题】 —Where is John? I couldn’t find him.— .
①  He is very busy
②  I suppose he could have gone to the meeting room
③  I couldn’t agree more
④  He is good.
【单选题】 ____ by this, he couldn’t say anything.
①  Satisfied
②  Feared
③  Frightened
④  Encouraged
【单选题】 A: I rang you several times yesterday but couldn’t get through. B: [填空]. I was busy.
①  Sorry about that
②  Sounds fine
③  I appreciate that
④  Thats all right
【单选题】 _____ that we couldn’ t catch up with him.
①  So fast he ran
②  So fast did he run
③  So fast ran he
④  Such fast did he run
【单选题】 5. Without your help, I couldn’t ______ the details ______.
①  work…at
②  work…out
③  work…on
④  work…up
【单选题】 There was so much noise in the classroom that the teacher couldn’t make himself _______.
①  heard
②  hearing
③  to hear
④  hear
【单选题】 They talked in whispers, but still, I couldn’t help but __________ their conversation.
①  overhear
②  to overhear
③  overhearing
④  overheard
【单选题】 I couldn’t ( ) more with your excellent taste of music.
①  refuse
②  accept
③  replace
④  agree
【单选题】 Try ___ he might, he couldn’t get out of difficulty.
①  when
②  where
③  till
④  as
【单选题】 That young boy couldn’t move because he _______ his leg.
①  breaks
②  broke
③  had broken
随机题目
【单选题】 下列描述中,属于抽象类的性质是()
①  可以说明虚函数
②  可以进行构造函数重载
③  可以定义友元函数
④  不能说明其对象
【单选题】 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)
【单选题】 执行下列语句后,x和y的值是() int x,y; x=y=1; ++x || ++y;
①  1和1
②  1和2
③  2和1
④  2和2
【单选题】 ()使一个函数可以定义为对许多数据类型完成同一任务。
①  函数模板
②  递归函数
③  模板函数
④  重载函数
【单选题】 设有类A的对象Aobject,若用友员函数重载后置自减表达式,那么Aobject--被编译器解释为()
①  Aobject.operator--()
②  operator--(Aobject,0)
③  --(Aobject,0)
【单选题】 有语句typedef double funt(double);funt fun13,*pfun;则以下正确的赋值语句是()
①  pfun=fun13;
②  *pfun=fun13;
③  pfun=funt;
④  *pfun=funt;