【单选题】【消耗次数:1】
Information has been put forward ___ more middle school graduates will be admitted into universities.
while
that
when
as
参考答案:
复制
纠错
相关题目
【单选题】 While _______ the sun, the satellite has sent more than four billion bits of information back to earth.
①  having orbited
②  being orbited
③  having been orbited
④  orbiting
【单选题】 The boy has admitted to _____the window while playing football yesterday.
①  breaking
②  having been broken
③  break
④  be breaking
【单选题】 The boy has admitted to ____ the window while playing football yesterday.
①  breaking
②  having been broken
③  break
④  be breaking
【单选题】 38. In recent years much more emphasis has been put______ developing the students productive skills.
①  onto
②  in
③  over
④  on
【单选题】 No aspect of life in the Twenties has been more commented upon and sensationally romanticized than _________.
①  the native Fourth-of-July bombast
②  the rejection of Victorian gentility
③  the expatriation of the true intellectuals
④  The so-called Revolt of the Younger Generation
【单选题】 When you do exercises, your heart works better. It is able to____ more blood while beating more slowly.
①  produce
②  pump
③  increase
④  bump
【单选题】 She has always been quick to pick things up, doing ( ) well in school without really trying.
①  passably
②  passable
③  passenger@passage
【单选题】 A: Could you put the books on bookshelves, please? B: Of course. [填空] A: Thats all. Everything else has been done.
①  Its a pleasure to help.
②  Is that all?
③  Im free now.
④  How should I do it?
【单选题】 He has been there, [填空]?
①  hasnt he
②  has he
③  does he
④  doesnt he
【单选题】 “When _______ school begin ?” “Next Monday.”
①  has
②  does
③  did
④  is going to
随机题目
【单选题】 如果表达式++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的友元
【单选题】 下面选项中不是类成员函数的是
①  构造函数
②  析构函数
③  友元函数
④  静态函数
【单选题】 类的构造函数在以下什么情况下会被自动调用( )
①  定义成员函数时
②  定义对象时
③  定义数据成员时
④  定义友元函数时
【单选题】 设置虚基类的目的是(  )。
①  简化程序
②  消除二义性
③  提高运行效率
④  减少目标代码
【单选题】 下列有关C++类的说法中,不正确的是( )。
①  类是一种用户自定义的数据类型
②  只有类中的成员函数或类的友元函数才能存取类中的私有成员
③  在类中,如果不做特别说明,所有成员的访问权限均为私有的
④  在类中,如果不做特别说明,所有成员的访问权限均为公用的
【单选题】 下列关于类的权限的描述错误的是( )
①  类本身的成员函数只能访问自身的私有成员
②  类的对象只能访问该类的公有成员
③  普通函数不能直接访问类的公有成员,必须通过对象访问
④  一个类可以将另一个类的对象作为成员
【单选题】 类MyA的拷贝初始化构造函数是 ( )
①  MyA()
②  MyA(MyA*)
③  MyA(MyA)
④  MyA(MyA)
【单选题】 已知X类,则当程序执行到语句:X array[3];时,调用了( )次构造函数。
①  0
②  1
③  2
④  3
【单选题】 下列的各类函数中,( )不是类的成员函数
①  构造函数
②  析构函数
③  友元函数
④  复制构造函数