考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
全国  |             |          |          |          |          |         
  当前位置:计算机等级 > 二级考试 > C++语言程序设计 > C++模拟试题 > 文章内容
  

全国计算机二级考试C++考前押密试卷(7)

中华IT学院   【 】  [ 2017年9月5日 ]

  21.派生类对象对其基类中的什么成员是可访问的?(  )

  A.公有继承的私有成员

  B.私有继承的公有成员

  C.私有继承的保护成员

  D.保护继承的保护成员

  22.有如下程序:

  #included

  usingnamespacestd;

  classA{

  public:

  virtualvoidfuncl(){cout<<"A1";)

  voidrune2(){cout<<"A2";}};

  classB:publicA{

  public:

  voidfuncl(){cout<<:"B1";}

  voidfunc2(){eout<<"B2";}};

  intmain(){

  A*p=newB;

  p->func1();

  P->func2();

  return0;}

  执行该程序,屏幕上将显示输出(  )。

  A.B1B2

  B.A1A2

  C.B1A2

  D.A1B2

  23.重载输人流运算符>>必须使用的原型为(  )。

  A.istream&operator>>(istream&,<类名>&);

  B.istream&operator>>(istream,<类名>);

  C.istreamoperator>>(istream,<类名>&);

  D.<类名>operator>>(istream&,<类名>&);

  24.有如下语句序列:

  intk=0:

  do{k+=5;cout<<’$’;}whilc(k<19);

  while(k->O)cout<<’*’;

  执行上面的语句序列输出字符“$”和“*”的个数分别是(  )。

  A.4和20

  B.5和20

  C.4和21

  D.5和21

  25.下列关于模板的说法正确的是(  )。

  A.模板的实参在任何时候都可以省略

  B.类模板与模板类所指的是同一概念

  C.类模板的参数必须是虚拟类型的

  D.类模板中的成员函数全部都是模板函数

  26.有以下程序:

  #include

  usingnamespacestd;

  classA

  {private:

  inta:

  public:

  A(inti)

  {a=i;}

  voiddisp()

  {cout<  classB

  (private:

  intb;

  public:

  B(intj)

  {b=j;}

  voiddisp()

  {cout<  classC:publicB,publicA

  {private:

  intC;

  public:

  c(intk):A(k-2),B(k+2)

  {c=k;

  }

  voiddisp()

  {

  a::disp();

  B::disp();

  COUt<  }

  };

  intmain()

  {

  Cobj(10);

  obj.disp();

  return0;

  }

  程序执行后的输出结果是(  )。

  A.10,10,10

  B.10,12,14

  C.8,10,12

  D.8,12,10

  27.下列程序的输出结果是(  )。#include

  voidmain()

  (char*str="12123434";

  intx1=0,x2=0,x3=0,x4=0,i;

  for(i=0;str[i]!=’\0’;i++)

  switch(str[i])

  {case’1’:x4++;

  case’2’:x3++;

  case’3’:x2++;

  case’4’:x1++;

  }

  cout<  <","<  }

  A.8,6,4,1

  B.8,6,3,2

  C.8,8,4,1

  D.8,6.4,2

  28.以下不能正确创建输出文件对黎并使其与磁盘文件相关联的语句是(  )。

  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");

  29.以下类定义中可能会引起错误的语句是(  )。

  classA

  {

  public:

  ~A(  ){}//1

  inti;//2

  private:

  intj;//3

  A(inti){i++;}//4

  };

  A.1

  B.2

  C.3

  D.4

  30.有如下程序:

  #include

  usingnamespacestd;

  classTestClass

  {public:

  virtualvoidfunl()

  {cout<<"funlTestClass";}

  virtualvoidfun2()

  {cout<<“fun2TestClass”;}};

  classTestClassl:publicTestClass

  {voidfun()

  {cout<<“funlTestClassl”;}};

  intmain()

  {TestClassobj1,*P;

  TestClasslobj2;

  p=&obj2;

  p->fun1();

  p->fun2();

  return0;}

  该程序执行后的输出结果是(  )。

  A.funlTestClasslfun2TestClass

  B.funlTestClass1fun2TestC1ass1

  C.funlTestClassfun2TestClass

  D.funlTestClassfun2TestClassl

分享到:
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2007-2013 中华考试网(Examw.com) All Rights Reserved