【判断题】【消耗次数:1】
Single quotation marks are used ot enclose a quotation within a quotation.
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 In English, the colon is used after the verb of saying and before a quotation.
①  正确
②  错误
【判断题】 A semicolon is used to introduce a quotation or a statemetn.
①  正确
②  错误
【单选题】 If you will make us your lowest quotation for air-conditioner, we shall regard ____ as a personal favor.
①  it
②  you
③  your lowest quotation
④  air-conditioner
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers are being used more and more extensively in the world today.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”In fact, in the nineteen century people used to make gardens in the shape of a clock face.
①  正确
②  错误
【判断题】 The title of an article within the topic should be underlined.
①  正确
②  错误
【单选题】 18. Strong feelings _____ within him.
①  opened
②  . welled up
③  rose up
④  confronted
【单选题】 There were dirty marks on her trousers ___ she had wiped her hands.
①  where
②  which
③  when
④  that
【判断题】 A single dash sets off a parenthetical element.
①  正确
②  错误
【单选题】 He used to in a small village, but now he has been used to in the big city.
①  live, living
②  live, live
③  living, living
④  living, live.
随机题目
【单选题】 在面向对象的程序设计中,首先在问题域中识别出若干个 ()
①  函数
② 
③  文件
④  过程
【单选题】 下列有关C++类的说法中,不正确的是( )。
①  类是一种用户自定义的数据类型
②  只有类中的成员函数或类的友元函数才能存取类中的私有成员
③  在类中,如果不做特别说明,所有成员的访问权限均为私有的
④  在类中,如果不做特别说明,所有成员的访问权限均为公用的
【单选题】 对类成员访问权限的控制,是通过设置成员的访问控制属性实现的,下列不是访问控制属性的是
①  公有类型
②  私有类型
③  保护类型
④  友元类型
【单选题】 假定一个类的构造函数为A(int aa,int bb){a=aa++;b=a*++bb;},则执行A x(4,5);语句后,x.a和x.b的值分别为()
①  4和5
②  4和20
③  4和24
④  20和5
【单选题】 对于拷贝初始化构造函数和赋值操作的关系,正确的描述是
①  拷贝初始化构造函数和赋值操作是完全一样的操作
②  进行赋值操作时,会调用类的构造函数
③  当调用拷贝初始化构造函数时,类的对象正在被建立并被初始化
④  拷贝初始化构造函数和赋值操作不能在同一个类中被同时定义
【单选题】 下列关于析构函数描述正确的是( )
①  可以重载
②  函数体中必须有delete语句
③  返回类型必须是void类型
④  不能指定返回类型
【单选题】 下列有关重载函数的说法中正确的是()
①  重载函数必须具有不同的返回值类型
②  重载函数参数个数必须相同
③  重载函数必须有不同的形参列表
④  重载函数名可以不同
【单选题】 在定义类成员时,为产生封装性,则需使用哪个关键字( )
①  public
②  publish
③  protected
④  private
【单选题】 下列不是描述类的成员函数的是()
①  构造函数
②  析构函数
③  友元函数
④  拷贝构造函数
【单选题】 类MyA的拷贝初始化构造函数是 ( )
①  MyA()
②  MyA(MyA*)
③  MyA(MyA&)
④  MyA(MyA)