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

 找回密码
 会员注册

微信登录,扫一扫

手机号码,快捷登录

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

21秋电科大《面向对象程序设计》课程在线作业1

[复制链接]
发表于 2021-10-18 00:06:37 | 显示全部楼层 |阅读模式
谋学网
资料来源:谋学网(www.mouxue.com)面向对象程序设计-[电子科技大学]《面向对象程序设计》课程在线作业1
试卷总分:100    得分:100
第1,classA
{publicintgetNumberinta{returna+1}}
classBextendsA
{publicintgetNumberintacharc{returna+2}publicstaticvoidmainString[]args{Bb=newBSystemoutprintlnbgetNumber0}}
whatistheresult
A、compilation succeeds and 1 is printed
B、compilation succeeds and 2 is printed
C、compilation succeeds and 3 is printed
D、An error at this program cause compilation to fail
正确资料:


第2题,以下约束符可用于定义成员常量
A、static
B、final
C、abstract
D、No modifier can be used
正确资料:


第3题,在Java的基本数据类型中int型数据占用字节内存空间
A、1
B、2
C、4
D、不能确定,取决于计算机字长
正确资料:


第4题,Java中main函数的值是
A、String
B、int
C、char
D、void
正确资料:


资料来源:谋学网(www.mouxue.com),下列常见的系统定义的异常中是输入、输出异常
A、ClassNotFoundException
B、IOException
C、FileNotFoundException
D、UnknownHostException
正确资料:


第6题,importjavaawt*publicclassXextendsFrame{publicstaticvoidmainString[]args{Xx=newXxpackxsetVisibletrue}publicX{setLayoutnewGridLayout22Panelp1=newPaneladdp1Buttonb1=newButton"One"p1addb1Panelp2=newPaneladdp2Buttonb2=newButton"Two"p2addb2Buttonb3=newButton"Three"p2addb3Buttonb4=newButton"Four"addb4}}whentheframeisresized
A、all change height and width
B、Button One change height
C、Button Two change height and Button Three change width
D、Button Four change height and width
正确资料:


第7题,下列Java常见事件类中是鼠标事件类
A、InputEvent
B、KeyEvent
C、MouseEvent
D、WindowEvent
正确资料:


第8题,在使用interface声明一个接口时只可以使用修饰符修饰该接口
A、public
B、protected
C、private和protected
D、private
正确资料:


第9题,在Java中用关键字定义常量
A、#define
B、fixed
C、const
D、final
正确资料:


资料来源:谋学网(www.mouxue.com),下列修饰符可以使在一个类中定义的成员变量只能被同一包中的类访问
A、private
B、public
C、protected
D、无修饰符
正确资料:


第11题,publicclassXextendsFrame{publicstaticvoidmainString[]args{Xx=newXxpackxsetVisibletrue}publicX{setLayoutnewGridLayout22Panelp1=newPaneladdp1Buttonb1
A、all change height and width
B、Button One change height
C、Button Two change height and Button Three change width
D、Button Four change height and width
正确资料:


资料来源:谋学网(www.mouxue.com),下列关于接口的叙述中是正确的
A、接口与抽象类是相同的概念
B、接口之间不能有继承关系
C、一个类只能实现一个接口
D、接口中只含有抽象方法和常量
正确资料:


第13题,在Java的基本数据类型中int型数据占用字节内存空间
A、1
B、2
C、4
D、不能确定,取决于计算机字长
正确资料:


第14题,下列语句输出结果为publicclassA{publicstaticvoidmainString[]args{byteb=0xaSystemoutprintlnb}}
A、0xa
B、a
C、1
D、10
正确资料:


资料来源:谋学网(www.mouxue.com),下列是异常的含义
A、程序的语法错
B、程序编译或运行中所发生的异常事件
C、程序预先定义好的异常事件
D、程序编译错误
正确资料:


第16题,下列命令中命令是Java的编译命令
A、javac
B、java
C、javadoc
D、appletviewer
正确资料:


第17题,classSuper{publicfloatgetNum{return30f}}
publicclassSubextendsSuper{//overload}
whichmethodplacedatoverloadwillcauseacompilererror
A、public float getNum(){return 4.0f;}
B、public void getNum(){}
C、public void getNum(double d){}
D、public double getNum(float d){return 4.0d;}
正确资料:


第18题,在一个applet标记中标记属性项可以省去不写
A、code
B、codebase
C、width
D、height
正确资料:


第19题,已知如下代码
public class Test{staticlong a[] = new long[10]public static void main  String arg[]  {
Systemoutprintln  a[6] }
}
则下面个语句是正确的
A、Output is null.
B、When compile, some error will occur.
C、Output is 0.
D、When running, some error will occur.
正确资料:


资料来源:谋学网(www.mouxue.com),下列叙述错误的是
A、Java是一种面向对象的网络编程语言
B、Java Applet程序在网络上传输不受硬软件平台的限制
C、Java提供了类库支持TCP/IP协议
D、Java语言允许使用指针访问内存
正确资料:


第21题,Java的屏幕坐标是以像素为单位容器的左下角被确定为坐标的起点
T、对
F、错
正确资料:F


第22题,抽象方法必须在抽象类中所以抽象类中的方法都必须是抽象方法
T、对
F、错
正确资料:F


第23题,J2SDK中主要有两个相关环境变量即path和classpath前者指定了JDK命令搜索路径后者指定了Java类路径
T、对
F、错
更多资料下载:谋学网(www.mouxue.com)


第24题,Java的各种数据类型占用固定长度与具体的软硬件平台环境无关
T、对
F、错
更多资料下载:谋学网(www.mouxue.com)


资料来源:谋学网(www.mouxue.com),Java语言没有无符号整数类型、指针类型、结构类型、枚举类型、共用体类型
T、对
F、错
更多资料下载:谋学网(www.mouxue.com)














本帖子中包含更多资源

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

×
奥鹏作业答案,奥鹏在线作业答案
您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

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

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

GMT+8, 2024-11-22 14:57 , Processed in 0.101428 second(s), 19 queries .

Powered by Discuz! X3.5

Copyright © 2001-2023 Tencent Cloud.

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