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

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

1、国家二级( C+)机试模拟试卷 102及答案与解析 一、选择题 1 数据流图中带有箭头的线段表示的是 ( )。 ( A)控制流 ( B)事件驱动 ( C)模块调用 ( D)数据流 2 将前缀运算符 “-“重载为非成员函数,下列原型中能正确用于类中说明的是( )。 ( A) Decr ( B) Decroperator-(Decr ( C) friendDecr ( D) friendDecroperator-(Decr 3 有如下程序: #include using namespace std; class Base public: Base(int x=0) cout #include us

2、ing namespace std; class Appliance public: Appliance(string t=“A“):type(t) coutTabs(Tx); ( B) templateclassTabs(Tx); ( C) templateTabs(Tx); ( D) templateTabs(Tx); 18 要定义整型数组 x,使之包括初值为 1的三个元素,下列语句正确的是 ( A) staticintx3=1; ( B) intx3;x1=x2=x3=1; ( C) intx3=1,1,1; ( D) intx=1,1,1; 19 有如下类定义: class Base

3、int l; public: int m; private: int n; ; class Derived: public Base; 则类 Derived 所拥有的数据成员的个数是 ( A) 0 ( B) 1 ( C) 2 ( D) 3 20 软件按功能可以分为:应用软件、系统软件和支撑软件 (或工具软件 )。下面属于应用软件的是 ( )。 ( A)编译程序 ( B)操作系统 ( C)教务管理系统 ( D)汇编程序 21 有如下函数定义: void func(int a, int b+; 若执行代码段: int x = 0, y = 1; func(x, y); 则变量 x和 y的值分别是

4、( )。 ( A) 0和 1 ( B) 1和 1 ( C) 0和 2 ( D) 1和 2 22 下列有关模板的叙述中,正确的是 ( )。 ( A)函数模板不能含有常规形参 ( B)函数模板的一个实例就是一个函数定义 ( C) 类模板的成员函数不能是模板函数 ( D)用类模板定义对象时,绝对不能省略模板实参 23 有如下程序段: int i=1; while(1) i+; if(i = 100) break; if(i%2 = 0) cout using namespace std; int main() void function(double val); double val; functi

5、on(val); cout usingnamespacestd; classMyClass public: MyClass(intx): value(x)(cout usingnamespacestd; classRoom “房间 ”类 introomno;房间号 doublelength;房间长度 (m) doublewidth;房间宽度 (m) public: Room(intthe_room_no, doublethe_length, doublethe_width): room_no (the_room_no), length(the_length), width(the_width)

6、 inttheRoomNo()constreturnroom_no; 返回房间号 doubletheLength()constreturnlength; 返回房间长度 doubletheWidth()constreturnwidth; 返回房间宽度 *found* doubletheArea()const_) 返回房间面积 (矩形面积 ) , classOffice: publicRoom “办公室 ”类 char*depart;所属部门 public: Office(intthe_room_no, doublethe_length, doublethe_width, constchar*th

7、edepart) *found* : _ depart: newcharstrlen(thedepart)+1; *found* strcpy(_); Office()deletedepart; constchar*theDepartment()const returndepart; 返回所属部门 ; intmain() *found* Office_; cout #include usingnamespacestd; classMiniString public: friendostream (3)void MyClass:Print() const 【试题解析】 (1)主要考查考生对析构函

8、数定义的掌握 ,析构函数前不能有任何类型 ,因此应将 void去掉。 (2)value是类的私有成员 ,私有成员只能声明不能定义初始值。 (3)主要考查考生对成员函数的掌握 ,由类的定义中关于函数的声明 void Print() const,可知在函数定义时应加上 const。 三、简单应用题 42 【正确答案】 (1)returnlength*width; (2)Room(theroom_no, the_length, the_width) (3)depart, the_depayt (4)an_offce(308, 5 6, 4 8, “会计科 “) 【试题解析】 (1)主要考查考生对成员

9、函数的掌握,题目要求返回房间面积 (矩形面积 )。由此可知空格部分要填写的是一个 return语句,返回房间面积,也就是length*width,因此可以得 出程序 returnlength*width;。 (2)主要考查考生对 派生类的构造函数的掌握,派生类的构造函数要使用成员列表初始法先对基类进行初始化。 (3)考查 strcpy函数,由前一条语句 depart=newcharstrlen(the_depart)+1;可知,程序给 depart分配了长度为 the_depart串长加 1的空间,因此要复制字符串the_depart串到 depart,直接填写 strcpy(depart,

10、the_depart)即可。 (4)主要考查考生对类的掌握,题目要求输出的结果为: 办公室房间号: 308 办公室长度: 5 6 办公室宽度: 4 8 办公室面 积: 26 88 办公室所属部门:会计科 由 Office类的构造函数可知要定义的一个 Office类的对象为 an_office(308,5 6, 4 8, “会计科 “)。 四、综合应用题 43 【正确答案】 MiniString strcpy(pt, sPtr); int blength = length; length += s.length; delete sPtr; sPtr = new charlength+1; strcpy(sPtr,pt); delete pt; for (int i = 0; i length; +i) sPtrblength+i = s.sPtri; return *this; 【试题解析】 主要考查考生对运算符重载的掌握 ,因为有动态数组 ,所以要使用new 语句来重新分配空间。

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

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

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