[计算机类试卷]国家二级(C++)机试模拟试卷114及答案与解析.doc

上传人:cleanass300 文档编号:502383 上传时间:2018-11-29 格式:DOC 页数:31 大小:74.50KB
下载 相关 举报
[计算机类试卷]国家二级(C++)机试模拟试卷114及答案与解析.doc_第1页
第1页 / 共31页
[计算机类试卷]国家二级(C++)机试模拟试卷114及答案与解析.doc_第2页
第2页 / 共31页
[计算机类试卷]国家二级(C++)机试模拟试卷114及答案与解析.doc_第3页
第3页 / 共31页
[计算机类试卷]国家二级(C++)机试模拟试卷114及答案与解析.doc_第4页
第4页 / 共31页
[计算机类试卷]国家二级(C++)机试模拟试卷114及答案与解析.doc_第5页
第5页 / 共31页
点击查看更多>>
资源描述

1、国家二级( C+)机试模拟试卷 114及答案与解析 一、选择题 1 当使用 ifstream流类定义一个流对象并打开一个磁盘文件时,文件的默认打开方式为 ( )。 ( A) ios_base:in ( B) ios_base:in|ios_base:out ( C) ios_base:out ( D) ios_base:in public: AA(int n=0):a(n) ; class BB :public AA public: BB(int n) ; 其中横线处缺失的部分是 ( )。 ( A) :a(n) ( B) :AA(n) ( C) a(n); ( D) a=n; 4 下列叙述中正

2、确的是 ( )。 ( A)有一个以上根结点的数据结构不一定是非线性结构 ( B)只 有一个根结点的数据结构不一定是线性结构 ( C)循环链表是非线性结构 ( D)双向链表是非线性结构 5 下列关于 return语句的叙述中,正确的是 ( A)任何函数的函数体中至少有一个 return语句 ( B)任何函数的函数体中最后一条语句必须是 return语句 ( C)如果函数的返回类型为 void,则其函数体中可以没有 return语句 ( D)如果函数的返回类型为 int,则其函数体中可以没有 return语句 6 已知 TV是一个类,并有函数 func定义如下: void func() TV li

3、,*net2,company3; 则在调用 func() 后, TV 类的析构函数被调用的次数是 ( A) 2次 ( B) 3次 ( C) 4次 ( D) 6次 7 一个栈的初始状态为空。现将元素 1,2,3,A,B,C依次入栈,然后再依次出栈,则元素出栈的顺序是 ( A) 1,2,3,A,B,C ( B) C,B,A,1,2,3 ( C) C,B,A,3,2,1 ( D) 1,2,3,C,B,A 8 有如下定义: class Inner public: void f1() cout #include using namespace std; class Wheel public: Wheel

4、(string s=“W“):name(s) coutTabs(Tx); ( B) templateclassTabs(Tx); ( C) templateTabs(Tx); ( D) template(i); ( C) cast(i); ( D) cast(i); 16 有如下程序段: int i=10; while(1) i+; if(i = 30)break; if(i%2 = 0)cout using namespace std; class AA public: AA() cout using namespace std; int fun1(int x) return +x; int

5、 fun2(int int main() int a=0,b=0,c=0; c=fun1(a)+fun2(b); coutA表达式可输出字符 A ( B) eof()函数可以检测是否到达文件尾 ( C)对磁盘文件进行流操作时,必须包含头文件 fstream ( D)以 ios_base:out模式打开的文件不存在时,将自动建立一个新文件 21 对 C+编译器区分重载函数无任何意义的信息是 ( )。 ( A)参数类型 ( B)参数个数 ( C)返回值类型 ( D)常成员函数关键字 const 22 有如下程序: #include using namespace std; class MyClas

6、s public: MyClass(int i=0) coutdata;“中, cin是 ( A) C+的关键字 ( B)类名 ( C)对象名 ( D)函数名 26 下列关于运算符函数的表述中,错误的是 ( A)运算符函数的参数表可以是空的 ( B)运算符函数的参数可以是对象 ( C)运算符函数的名称总是以 operator为前缀 ( D)运算符函数只能定义为类的成员函数 27 有如下程序: #include #include using namespace std; class Wheel public: Wheel(string s=“W“):name(s) cout using name

7、space std; class A public: A(int i) x = i; void dispa () cout using namespace std; class Base public: Base() cout usingnamespacestd; classMyClass public: MyClass(inti) value=i; cout usingnamespacestd; classPoint:定义坐标点类 public: Point(intxx=0, intyy=0) x=xx; y=yy; ) voidPrint: P()cout #include usingna

8、mespacestd; classIntArray public: IntArray(unsignedintn) Size=n; data=newintsize; IntArray()deletedata; intgetSize()constreturnsize; int 【试题解析】 (1)主要考查考生对 const函数的掌握 ,主函数中 obj的定义为 :const MyClass obj(10),要使 obj能调用 Print函数 ,必须使 Print函数为 const类型。 (2)析构函数不需要返回类型 ,应将 void 去掉。 (3)主要考查考生对私有成员的掌握 ,私有成员只能声明不

9、能初始化。 三、简单应用题 42 【正确答案】 (1)cc.PrintP() (2)Circle (3)cc(cen) (4)b.PrintP() 【试题解析】 (1)主要考查考生对成员函数的掌握 ,cc是 Point类 ,直接调用类的PrintP函数输出点坐标即可。 (2)主要考查考生对拷贝构造函数的掌握 ,拷贝构造函数的函数名就是类名。 (3)主要考查考生对拷贝构造函数的掌握 ,可以使用成员列表初始化。 (4)主要考查考生对成员函数调用的掌握 ,按题目要求输出 b的信息。 四、综合应用题 43 【正确答案】 for (int i = 0; i size; i+) for (int j = i+1; j size; j+)

展开阅读全文
相关资源
猜你喜欢
  • BS PD IEC TS 62763-2013_5284 Pilot function through a control pilot circuit using PWM (pulse width modulation) and a control pilot wire《通过控制导向线使用PWM (脉冲宽度调制) 的导向功能和控制导向线》.pdf BS PD IEC TS 62763-2013_5284 Pilot function through a control pilot circuit using PWM (pulse width modulation) and a control pilot wire《通过控制导向线使用PWM (脉冲宽度调制) 的导向功能和控制导向线》.pdf
  • BS ISO 8070-2007 Milk and milk products - Determination of calcium sodium potassium and magnesium contents - Atomic absorption spectrometric method《牛奶和奶制品 钙、钠、钾和镁含量的测定 原子吸.pdf BS ISO 8070-2007 Milk and milk products - Determination of calcium sodium potassium and magnesium contents - Atomic absorption spectrometric method《牛奶和奶制品 钙、钠、钾和镁含量的测定 原子吸.pdf
  • BS ISO 8082-1-2009 Self-propelled machinery for forestry - Laboratory tests and performance requirements for roll-over protective structures - General machines《林业用自推进机械 防倾.pdf BS ISO 8082-1-2009 Self-propelled machinery for forestry - Laboratory tests and performance requirements for roll-over protective structures - General machines《林业用自推进机械 防倾.pdf
  • BS ISO 8082-2-2011 Self-propelled machinery for forestry Laboratory tests and performance requirements for roll-over protective structures Machines having a rotating platf.pdf BS ISO 8082-2-2011 Self-propelled machinery for forestry Laboratory tests and performance requirements for roll-over protective structures Machines having a rotating platf.pdf
  • BS ISO 8083-2006 Machinery for forestry - Falling-object protective structures (FOPS) - Laboratory tests and performance requirements《林业机械 落体防护装置(FOPS) 实验室试验和性能要求》.pdf BS ISO 8083-2006 Machinery for forestry - Falling-object protective structures (FOPS) - Laboratory tests and performance requirements《林业机械 落体防护装置(FOPS) 实验室试验和性能要求》.pdf
  • BS ISO 8086-2004 Dairy plant - Hygiene conditions - General guidance on inspection and sampling procedures《乳品厂 卫生条件 检验和取样程序通用指南》.pdf BS ISO 8086-2004 Dairy plant - Hygiene conditions - General guidance on inspection and sampling procedures《乳品厂 卫生条件 检验和取样程序通用指南》.pdf
  • BS ISO 8096-2005 Rubber- or plastics-coated fabrics for water resistant clothing - Specification《雨衣用橡胶或塑料涂覆织物 规范》.pdf BS ISO 8096-2005 Rubber- or plastics-coated fabrics for water resistant clothing - Specification《雨衣用橡胶或塑料涂覆织物 规范》.pdf
  • BS ISO 8097-2001 Aircraft Minimum airworthiness requirements and test conditions for certified air cargo unit load devices《航空器 经认证的航空货运集装单元装置最低适航性要求和试验条件》.pdf BS ISO 8097-2001 Aircraft Minimum airworthiness requirements and test conditions for certified air cargo unit load devices《航空器 经认证的航空货运集装单元装置最低适航性要求和试验条件》.pdf
  • BS ISO 8114-1993 Textile machinery and accessories - Spindles for ring-spinning and doubling machines - List of equivalent terms《纺织机械和附件 环锭纺纱机和并线机用锭子 同义术语表》.pdf BS ISO 8114-1993 Textile machinery and accessories - Spindles for ring-spinning and doubling machines - List of equivalent terms《纺织机械和附件 环锭纺纱机和并线机用锭子 同义术语表》.pdf
  • 相关搜索

    当前位置:首页 > 考试资料 > 职业资格

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1