【单选题】【消耗次数:1】
18.The tie doesnt ____ my shirtnvery well
match
fix
go
fit
参考答案:
复制
纠错
相关题目
【单选题】 18.The garage deals_____ gasoline, oil ,etc. t
①  with
②  in
③  for
④  about
【单选题】 A: I go to the gym twice a week. B: [填空] You look really fit and healthy.
①  Thats right!
②  I can tell.
③  No way!
④  Poor you!
【单选题】 I haven’t made ( ) my mind where to go.
①  up
②  from
③  out
④  in
【单选题】 Every time when I go back to my hometown, I usually spend two days ____ of my relatives.
①  going the rounds of
②  rounding up
③  making the rounds of
④  rounding on
【单选题】 My grandmother’s taken ill and I’ve got to go down to the hospital.
①  We’re going to the same place
②  Very sorry to hear it. I hope it’s nothing serious
③  Really?
④  Let me go with you
【单选题】 I ___ go to bed until I ___ finished my work last night.
①  don’t; had
②  didn’t; have
③  didn’t; had
④  don’t; have
【单选题】 “energy fix”的正确译文是?
①  A.混合的能源
②  B. 替代能源
③  C. 能源结构
【单选题】 A: Would you like to go to the cinema? B: If I can finish my homework. A: [填空]
①  Why bother?
②  Oh, come on!
③  Then what?
④  Thanks a lot.
【单选题】 I________go to bed until I________finished my work last night.
①  dont;had
②  didnt;have
③  didnt;had
④  dont;have
【单选题】 8. I______ go to bed until I ______ finished my work last night.
①  Don’t; had
②  didn’t have
③  didn’t; had
④  don’t; have
随机题目
【单选题】 所谓多态性是指 ()
①  不同的对象调用不同名称的函数
②  不同的对象调用相同名称的函数
③  一个对象调用不同名称的函数
④  一个对象调用不同名称的对象
【单选题】 在C++中类之间的继承关系具有
①  自反性
②  对称性
③  传递性
④  反对称性
【单选题】 在多继承中,公有派生和私有派生对于基类成员在派生类中的可访问性与单继承的规则()。
①  完全相同
②  完全不同
③  部分相同,部分不同
④  以上都不对
【单选题】 类B是类A的公有派生类,类A和类B中都定义了虚函数func(),p是一个指向类A对象的指针,则p->A::func()将()
①  调用类A中的函数func()
②  调用类B中的函数func()
③  根据p所指的对象类型而确定调用类A中或类B中的函数func()
④  既调用类A中函数,也调用类B中的函数
【单选题】 派生类的对象对它的基类成员中()中可以访问的。
①  公有继承的公有成员
②  公有继承的私有成员
③  公有继承的保护成员
④  私有继承的公有成员
【单选题】 以下基类中的成员函数表示纯虚函数的是()
①  virtual void tt()=0
②  void tt(int)=0
③  virtual void tt(int)
④  virtual void tt(int){}
【单选题】 在私有继承的情况下,基类成员在派生类中的访问权限()
①  受限制
②  保持不变
③  受保护
④  不受保护
【单选题】 关于this指针使用说法正确的是()
①  保证每个对象拥有自己的数据成员,但共享处理这些数据的代码
②  保证基类私有成员在子类中可以被访问。
③  保证基类保护成员在子类中可以被访问。
④  保证基类公有成员在子类中可以被访问。
【单选题】 下面声明纯虚函数语句正确的是
①  void fun( ) =0;
②  virtual void fun( )=0;
③  virtual void fun( );
④  virtual void fun( ){ };
【单选题】 C++中要实现动态联编,调用虚函数时必须使用
①  基类指针
②  类名
③  派生类指针
④  对象名