[计算机类试卷]国家二级(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+)

展开阅读全文
相关资源
猜你喜欢
相关搜索

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

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