奥鹏作业答案-谋学网-专业的奥鹏在线作业答案辅导网【官网】

 找回密码
 会员注册

微信登录,扫一扫

手机号码,快捷登录

VIP会员,3年作业免费下 !奥鹏作业,奥鹏毕业论文检测新手作业下载教程,充值问题没有找到答案,请在此处留言!
2022年5月最新全国统考资料投诉建议,加盟合作!点击这里给我发消息 点击这里给我发消息
奥鹏课程积分软件(2021年最新)
查看: 927|回复: 3

【北语网院】19秋《面向对象程序设计》作业_3(100分)

[复制链接]
发表于 2019-11-14 01:31:42 | 显示全部楼层 |阅读模式
谋学网
【北京语言大学】19秋《面向对象程序设计》作业_3
试卷总分:100    得分:100
第1,<span style="font-family: 宋体; color: #666666;">假定一个二维数组的定义语句为</span><span style="font-family: Arial, serif; color: #666666;">“inta[3][4]={</span><span style="font-family: Arial, serif;">{3,4},{2,8,6}};”</span><span style="font-family: 宋体; color: #666666;">,</span><span style="font-size:14px;font-family:宋体;color:#666666">则元素</span><span style="font-size: 14px;font-family:&#39;Arial&#39;,&#39;serif&#39;;color:#666666">a[2][1]</span><span style="font-size:14px;font-family:宋体;color:#666666">的值为()。</span>
A、0
B、4
C、8
D、6
正确资料:


第2题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2625.bmp" width="421" height="51" style="width: 421px; height: 51px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第3题,switch语句能够改写为(    )语句。
A、for
B、if
C、do
D、while
正确资料:


第4题,C++源程序文件的默认扩展名为(     )。
A、cpp
B、exe
C、obj
D、lik
正确资料:


第5题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2540.bmp" width="572" height="102" style="width: 572px; height: 102px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第6题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2530.bmp" width="407" height="60" style="width: 407px; height: 60px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第7题,决定C++语言中函数的返回值类型的是()
A、 return语句中的表达式类型
B、调用该函数时系统随机产生的类型
C、调用该函数时的主调用函数类型
D、 在定义该函数时所指定的数据类型
正确资料:


第8题,将两个字符串连接起来组成一个字符串时,选用(     )函数。
A、strlen()
B、strcap()
C、strcat()
D、strcmp()
正确资料:


第9题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2588.bmp" width="434" height="47" style="width: 434px; height: 47px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第10题,do语句能够改写为(    )语句。
A、复合
B、if
C、switch
D、while
正确资料:


第11题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2587.bmp" width="475" height="50" style="width: 475px; height: 50px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第12题,<span style=font-size:16px;font-family:宋体>在下面循环语句中循环体执行的次数为( )。for(int i=0; i&lt;n; i++)if(i>n/2) break;</span>
A、n/2
B、n/2+1
C、n/2-1
D、n-1
正确资料:


第13题,假定有“struct BOOK{char title[40]; float price;}; BOOK *book;”,则不正确的语句为(    )。
A、BOOK*x=newbook
B、BOOKx={&quot;C++Programming&quot;,27.0}
C、BOOK*x=newBOOK
D、BOOK*x=book
正确资料:


第14题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2603.bmp" width="249" height="47" style="width: 249px; height: 47px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第15题,以下正确的函数原型语句是(    )。<br/>
A、<span style="font-size:14px;font-family: &#39;Microsoft YaHei&#39;,&#39;serif&#39;;color:#666666"> doublefun(int x,int y)</span>
B、<span style="font-size:14px;font-family: &#39;Microsoft YaHei&#39;,&#39;serif&#39;;color:#666666">doublefun(int x</span><span style="font-size: 14px;font-family:宋体;color:#666666">;</span><span style="font-size:14px;font-family:&#39;Microsoft YaHei&#39;,&#39;serif&#39;;color:#666666">inty)</span>
C、<span style="font-size:14px;font-family: &#39;Microsoft YaHei&#39;,&#39;serif&#39;;color:#666666">double fun(int,int) ;</span>
D、<span style="font-size:14px;font-family: &#39;Microsoft YaHei&#39;,&#39;serif&#39;;color:#666666">doublefun(intx,y) ;</span>
正确资料:


第16题,以下叙述不正确的是(     )。
A、宏替换不占用运行时间
B、宏名无类型
C、宏替换只是字符替换
D、宏名必须用大写字母表示
正确资料:


第17题,假定变量b和pb定义为“int b[10], *pb=b;”,要将24赋值给b[1]元素中,不正确的语句是(     )。
A、*(pb+1)=24
B、*(b+1)=24
C、*++b=24
D、*++pb=24
正确资料:


第18题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2562.bmp"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第19题,循环语句“for(int i=0; i&lt;n; i++) cout&lt;&lt;i*i&lt;&lt;’ ’;”中循环体执行的次数为(    )。
A、1
B、n-1
C、n
D、n+1
正确资料:


第20题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2532.bmp" width="423" height="63" style="width: 423px; height: 63px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第21题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2528.bmp" width="314" height="61" style="width: 314px; height: 61px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第22题,以下正确的说法是(   )。
A、用户调用标准库函数前,必须重新定义
B、用户可以重新定义标准库函数,若如此,该函数将失去原有含义
C、系统不允许用户重新定义标准库函数
D、用户调用标准库函数前,不必使用预编译命令将该函数所在文件包括到用户源文件中
正确资料:


第23题,适宜采用inline定义函数情况是()<br/>
A、 函数体含有循环语句<br/>
B、 函数体含有递归语句<br/>
C、 函数代码少、频繁调用<br/>
D、 函数代码多、不常调用<br/>
正确资料:


第24题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2586.bmp" width="347" height="54" style="width: 347px; height: 54px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:


第25题,<img src="http://otsstatic.chinaedu.net/ots/blcu/eblcuimage/2548.bmp" width="333" height="153" style="width: 333px; height: 153px;"/>
A、(A)
B、(B)
C、(C)
D、(D)
正确资料:

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?会员注册

×
奥鹏作业答案,奥鹏在线作业答案
发表于 2019-11-14 07:06:46 | 显示全部楼层
奥鹏作业答案,奥鹏在线作业答案
回复

使用道具 举报

发表于 2019-11-14 07:31:02 | 显示全部楼层
奥鹏作业答案,奥鹏在线作业答案
回复

使用道具 举报

发表于 2019-11-14 07:53:16 | 显示全部楼层
奥鹏作业答案,奥鹏在线作业答案
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

 
 
客服一
客服二
客服三
客服四
点这里给我发消息
点这里给我发消息
谋学网奥鹏同学群2
微信客服扫一扫

QQ|关于我们|联系方式|网站特点|加入VIP|加盟合作|投诉建议|法律申明|Archiver|小黑屋|奥鹏作业答案-谋学网 ( 湘ICP备2021015247号 )

GMT+8, 2024-11-25 08:49 , Processed in 0.103980 second(s), 21 queries .

Powered by Discuz! X3.5

Copyright © 2001-2023 Tencent Cloud.

快速回复 返回顶部 返回列表