位置:首页 > 题库频道 > 其它分类 > 计算机其它 > 二级二级C++2013年9月全国计算机等级《二级C++》上机临考冲刺试卷(3)

下列语句都是程序运行时的第1条输出语句,其中一条语句的输出效果与其他3条语句不同,该语句是(  )。

发布时间:2024-07-09

A.cout<

B.tout<

C.cout<

D.tout<

试卷相关题目

  • 1下列选项中,能用作数据常量的是(  )。

    A.o115

    B.o118

    C.1.5e1.5

    D.115L

    开始考试点击查看答案
  • 2下列关于纯虚函数与抽象类的描述巾,错误的是(  )。

    A.纯虚函数是一种特殊的虚函数,它没有具体的实现

    B.抽象类是指具有纯虚函数的类

    C.一个基类声明了纯虚函数,该基类的派生类一定不是抽象类

    D.抽象类只能作为基类来使用,其纯虚函数的实现由派生类给出

    开始考试点击查看答案
  • 3对于长度为n的线性表,在最坏情况下,下列各排序法所对应的比较次数中正确的是(  )。

    A.冒泡排序为n/2

    B.冒泡排序为n

    C.快速排序为n

    D.快速排序为n(n-1)/2

    开始考试点击查看答案
  • 4以下不能正确创建输出文件对黎并使其与磁盘文件相关联的语句是(  )。

    A.ofstreammyfile;myfile.open("d:ofile.txt");

    B.ofstream*myfile=newofstream;myfile->open("d:ofile.txt”);

    C.ofstreammyfile("d:ofile.txt");

    D.ofstream*myfile=new("d:ofile.txt");

    开始考试点击查看答案
  • 5下列字符串中可以用作C++标识符的是(  )。

    A.2009var

    B.goto

    C.test-2009

    D.123

    开始考试点击查看答案
  • 6有如下程序:#includeusingnamespacestd;classPoint{intX,y;public:Point(intx1=0,inty1=0):X(x1),y(y1){}intget(){returnx+y;}};classCircle{Pointcenter;intradius;public:Circle(intCX,intcy,intr):center(CX,cy),radius(r){}intget(){returncenter.get()+radius;}};intmain(){Circlec(3,4,5);cout<<c.get()<return0;}运行时的输出结果是(  )。

    A.5

    B.7

    C.9

    D.12

    开始考试点击查看答案
  • 7下列枚举类型的定义中,包含枚举值3的是(  )。

    A.enumtest{RED,YELLOW,BLUE,BLACK};

    B.enumtest{RED,YELLOW=4,BLUE,BLACK);

    C.enumtest{RED=-1,YELLOW,BLUE,BLACK};

    D.enumtest{RED,YELLOW=6,BLUE,BLACK);

    开始考试点击查看答案
  • 8类模板templateclassX{…},其中友元函数f对特定类型T(如int),使函数f(x)成为x模板类的友元,则其说明为(  )。

    A.friendvoidf();

    B.friendvoidf(x);

    C.friendvoidA::f();

    D.friendvoidC::f(x);

    开始考试点击查看答案
  • 9下列各组类型声明符中,含义相同的一组是(  )。

    A.unsignedlongint和long

    B.signedshort和short

    C.unsignedshort和short

    D.shortint和int

    开始考试点击查看答案
  • 10以下程序的输出结果是(  )。voidmain(  ){inta=4,b=5,c=0,d;d=!a&&!b‖!c;cout<<d<}

    A.1

    B.0C.非0的数D.-1

    开始考试点击查看答案
返回顶部