【单选题】【消耗次数:1】
I don’t like singing. Neither [填空] I.
does
is
do
did
参考答案:
复制
纠错
相关题目
【单选题】 I don’t like to stay at home on Sundays. _______.
①  So do I
②  Neither do I
③  So am I
【单选题】 I didn’t talk with him. Neither [填空] they.
①  do
②  does
③  did
④  is
【单选题】 What role does a teacher play in the following activity? T: do you have any hobbies? S: yes, I like singing and dancing. T: Uhm, and...? S: I also collect coins. T: Oh, really, how many...have you already...collected?
①  Controller
②  Assessor
③  Organizer
④  Prompter
【单选题】 The [填空] are singing.
①  woman
②  womans
③  women
④  man
【单选题】 08. It is not that I do not like plays. The reason why I did not go to the theater last night was that I could not ____ the time.
①  offer
②  leave
③  affor
④  manage
【单选题】 I am[填空]?tired?that I don’t want to go out.
①  very
②  too
③  so
④  indeed
【单选题】 If you don’t go, ____ I.
①  nor shall
②  so don’t
③  neither do
④  so do
【单选题】 I don’ t think it’ s important, _____?
①  doesn’ t
②  is it
③  do I
④  isn’ t
【单选题】 He’s [填空]singing.
①  fed up
②  tire
③  tired
④  tired of
【简答题】 观察以下实例,说明汉语和英语在回答是非问句时的异同,并分析导致这种现象的原因。(1)你喜欢这部电影吗?—— a、是的,我喜欢。/ b、不,我不喜欢。(1’)Do you like this movie? —— a、Yes,I like it./ b、No,I don’t like it.(2)你不喜欢这部电影吗?—— a、是的,我不喜欢。/ b、不,我喜欢。(2’)Don’t you like this movie? —— a、No,I don’t like it./ b、Yes,I like it.
随机题目
【单选题】 考虑下面的函数原型声明:void testDefaulParam(int a,int b=7,char z=*下面函数调用中,不合法的是( )。
①  testDefaulParam(5);
②  testDefaulParam(5,8);
③  testDefaulParam(5,#
④  testDefaulParam(0,0,*
【单选题】 函数调用func((exp1,exp2),(exp3,exp4,exp5))中所含实参的个数为()
①  1
②  2
③  4
④  5
【单选题】 类的私有成员可在何处被访问( )
①  本类的成员函数中
②  本类及子类的成员函数中
③  通过对象名在任何位置
④  不可访问
【单选题】 下列关于析构函数描述正确的是( )
①  可以重载
②  函数体中必须有delete语句
③  返回类型必须是void类型
④  不能指定返回类型
【单选题】 已知:print( )函数是一个类的常成员函数,它无返回值,下列表示中,( )是正确的。
①  void print( ) const;
②  const void print( );
③  void const print( );
④  void print(const);
【单选题】 若Sample类中的一个成员函数说明如下:void set(Sample a),则Sample a的含义是()
①  指向类Sample的名为a的指针
②  a是类Sample的对象引用,用来作函数Set()的形参
③  将a的地址赋给变量Set
④  变量Sample与a按位与的结果作为函数Set的参数
【单选题】 C++中类的成员默认为
①  public
②  private
③  protected
④  static
【单选题】 对于友元描述正确的是( )
①  友元是本类的成员函数
②  友元不是本类的成员函数
③  友元不是函数
④  友元不能访问本类私有成员
【单选题】 如果表达式++i*k中的“++”和“*”都是重载的友元运算符,若采用运算符函数调用格式,则表达式还可以表示为( )。
①  operator*(i.operator++(),k)
②  operator*(operator++(i),k)
③  i.operator++().operator*(k)
④  k.operator*(operator++(i))
【单选题】 如果类A被声明成类B的友元,则( )
①  类A的成员即类B的成员
②  类B的成员即类A的成员
③  类A的成员函数不得访问类B的成员
④  类B不一定是类A的友元