最新JAVASE综合测试题库188题含答案.docx

上传人:b****5 文档编号:5931012 上传时间:2023-01-02 格式:DOCX 页数:65 大小:35.06KB
下载 相关 举报
最新JAVASE综合测试题库188题含答案.docx_第1页
第1页 / 共65页
最新JAVASE综合测试题库188题含答案.docx_第2页
第2页 / 共65页
最新JAVASE综合测试题库188题含答案.docx_第3页
第3页 / 共65页
最新JAVASE综合测试题库188题含答案.docx_第4页
第4页 / 共65页
最新JAVASE综合测试题库188题含答案.docx_第5页
第5页 / 共65页
点击查看更多>>
下载资源
资源描述

最新JAVASE综合测试题库188题含答案.docx

《最新JAVASE综合测试题库188题含答案.docx》由会员分享,可在线阅读,更多相关《最新JAVASE综合测试题库188题含答案.docx(65页珍藏版)》请在冰豆网上搜索。

最新JAVASE综合测试题库188题含答案.docx

最新JAVASE综合测试题库188题含答案

2020年JAVASE综合考试试题库188题[含答案]

一、选择题

1.以下哪些有关Vector类的描述是正确的?

答案:

C

A.该类是个public类

B.该类是个final类

C.该类实现了List接口

D.该类可以序列化

2."关于以下代码正确的说法是:

1.publicclassExample{

2.intx=0;

3.

4.publicExample(intinVal)throwsException{

5.if(inVal!

=this.x){

6.thrownewException(""Invalidinput"");

7.}

8.}

9.

10.publicstaticvoidmain(String[]args){

11.Examplet=newExample(4);

12.}

13.}"

答案:

A.代码在第1行编译错误

B.代码在第4行编译错误

C.代码在第6行编译错误

D.代码在第11行编译错误

3."现有如下代码:

publicclassExample{

publicstaticvoidmain(String[]args){

try{

System.out.println(""before"");

doRisyThing();

System.out.println(""after"");

}catch(Exceptione){

System.out.println(""catch"");

}

System.out.println(""done"");

}

publicstaticvoiddoRisyThing()throwsException{

//thiscodereturnsunlessitthrowsanException

}

}

该代码可能的执行结果有哪些?

"

答案:

A.beforecatch

B.beforeafterdone

C.beforecatchdone

D.beforeaftercatch

4."下列代码的执行结果是?

classExample{

privatevoidmethod1()throwsException{

thrownewRuntimeException();

}

publicvoidmethod2(){

try{

method1();

}catch(RuntimeExceptione){

System.out.println(""CaughtRuntimeException"");

}catch(Exceptione){

System.out.println(""CaughtException"");

}

}

publicstaticvoidmain(String[]args)throwsIOException{

Examplea=newExample();

a.method2();

}

}"

答案:

A.代码编译失败

B.输出CaughtRuntimeException

C.输出CaughtException

D.输出CaughtRuntimeException和CaughtException

5."以下代码的输出结果是什么?

选择所有的正确答案。

classExample{

publicstaticvoidmain(String[]args)throwsIOException{

for(inti=0;i<10;i++){

try{

try{

if(i%3==0)

thrownewException(""E0"");

System.out.println(i);break;

}catch(Exceptioninner){

i*=2;

if(i%3==0)

thrownewException(""E1"");

}finally{

++i;

}

}catch(Exceptionouter){

i+=3;

}finally{

--i;

}

}

}

}"

答案:

A.4

B.5

C.6

D.7

6.下列关于Math类说法错误的是

答案:

A.java.lang.Math类是final类,因此不能被其他类继承

B.java.lang.Math类的构造器是私有的,即声明为private,不能实例化一个Math类的对象

C.java.lang.Math类上定义的所有常量和方法均是public和static的,因此可以直接通过类名调用

D.min()和max()方法的参数之一,如果是NaN值,则方法将返回另一个参数值

7.以下哪个方法是Math类中定义的?

答案:

A.absolute()

B.log()

C.cosine()

D.sine()

8.以下哪个方法用于计算平方根?

答案:

B

A.squareRoot()

B.sqrt()

C.root()

D.sqr()

9."以下代码的输出结果是什么?

publicclassExample{

publicstaticvoidmain(String[]args){

System.out.println(Math.round(Float.MAX_VALUE));

}

}"

答案:

B

A.输出Integer.MAX_VALUE

B.输出一个最接近Float.MAX_VALUE的整数

C.编译失败

D.运行时输出异常信息

10."以下代码的运行结果是什么?

publicclassExample{

publicstaticvoidmain(String[]args){

System.out.println(Math.min(0.0,-0.0));

}

}"

答案:

C

A.代码编译失败

B.输出0.0

C.输出-0.0

D.代码编译成功,但运行时输出异常信息

11."现有:

f是一个File类实例的合法引用

fr是一个FileReader类实例的合法引用

br是一个BufferedReader类实例的合法引用

如下代码:

Stringline=null;

//插入代码处

System.out.println(line);

哪一行代码插入到插入代码处将循环一次输出文本文件的一行?

"

答案:

A.while((line=f.read())!

=null){

B.while((line=fr.read())!

=null){

C.while((line=br.read())!

=null){

D.while((line=br.readLine())!

=null){

12.下列哪些项是泛型的优点?

答案:

A

A.不用向下强制类型转换

B.代码容易编写

C.类型安全

D.运行速度快

13."给出以下代码:

classExample{

publicstaticvoidmain(String[]args)throwsIOException{

try{

methodA();

}catch(IOExceptione){

System.out.println(""caughtIOException"");

}catch(Exceptione){

System.out.println(""caughtException"");

}

}

}

如果methodA()方法抛出一个IOException异常,则该程序的运行结果是什么?

"

答案:

A.无内容输出

B.代码编译失败

C.输出caughtIOException

D.输出caughtException

14.以下哪些集合接口支持重复元素存在?

答案:

B

A.Collection

B.List

C.Map

D.Set

15.表示键值对概念的接口是哪项?

答案:

D

A.Set

B.List

C.Collection

D.Map

16.欲构造ArrayList类继承了List接口,下列哪个方法是正确的?

答案:

B

A.ArrayListmyList=newObject()

B.ListmyList=newArrayList()

C.ArrayListmyList=newList()

D.ListmyList=newList()

17.创建一个只能存放String的泛型ArrayList的语句是哪项?

答案:

B

A.ArrayListal=newArrayList();

B.ArrayListal=newArrayList();

C.ArrayListal=newArrayList();

D.ArrayListal=newList();

18."现有:

publicclassExample{

publicstaticvoidmain(String[]args){

TreeSets=newTreeSet();

s.add(""one"");

s.add(""two"");

//插入代码处

for(Strings2:

sorted){

System.out.print(s2+"""");

}

}

}

和四个代码片段:

s1:

SortedSetsorted=s.tailSet(s.first());

s2:

SortedSetsorted=s.tailSet(s.first());

s3:

SortedSetsorted=(SortedSet)s.tailSet(s.first());

s4:

SortedSetsorted=(SortSet)s.tailSet(s.first());

分别插入到插入代码处,哪项可以编译?

"

答案:

A.S2

B.S2和S3

C.S2和S4

D.S2、S3和S4

19."以下代码执行结果是?

publicclassExample{

publicstaticvoidmain(String[]args){

TreeMapmap=newTreeMap();

map.put(""one"",""1"");

map.put(""two"",""2"");

map.put(""three"",""3"");

displayMap(map);

}

staticvoiddisplayMap(TreeMapmap){

Collectionc=map.entrySet();

Iteratori=c.iterator();

while(i.hasNext()){

Objecto=i.next();

System.out.print(o.toString());

}

}

}"

答案:

A.onetwothree

B.123

C.one=1three=3two=2

D.onethreetwo

20.以下哪些类提供了创建一个目录的方法?

答案:

A

A.File

B.DataOutput

C.Directory

D.FileDescriptor

21."以下代码的执行结果是?

publicclassExample{

publicstaticvoidmain(String[]args){

Filef=newFile(""c:

\\large.txt"");

}

}"

答案:

A.large.txt文件在本地硬盘上被创建

B.在Unix系统上运行失败,因为路径分割符不正确

C.large.txt文件在本地硬盘上没有被创建

D.如果large.txt文件已经存在,则一个异常被抛出

22."下列代码执行后的结果是?

publicclassExample{

publicstaticvoidmain(String[]args){

try{

doublex=64.0;

doubley=0.0;

System.out.println(x%y==x%y);

}catch(Exceptione){

System.out.println(""Exception"");

}

}

}"

答案:

D

A.编译失败

B.运行时抛出异常

C.打印输出true

D.打印输出false

23."以下代码的运行结果是什么?

publicclassExample{

publicstaticvoidmain(String[]args){

doubled1=-0.5;

System.out.println(""Ceild1=""+Math.ceil(d1));

System.out.println(""Floord1=""+Math.floor(d1));

}

}

"

答案:

B

A.输出Ceild1=-0.0Floord1=-1.0

B.输出Ceild1=0.0Floord1=-1.0

C.输出Ceild1=-0.0Floord1=-0.0

D.输出Ceild1=0.0Floord1=0.0

24."现有如下代码:

publicclassExample{

publicstaticvoidmain(String[]args){

try{

intx=Integer.parseInt(""42a"");

//插入代码处

System.out.println(""oops"");

}

}

}

在插入代码处插入哪些语句可以在运行后输出oops?

"

答案:

C

A.}catch(IllegalArgumentExceptione){(非法参数异常)

B.}catch(IllegalStateExceptionc){

C.}catch(NumbelFormatExceptionn){

D.}catch(ClassCastExceptionc){

25.为了保证方法的线程安全,声明方法的时候必须使用哪个修饰符?

答案:

A.new

B.transient

C.void

D.synchronized

26.以下说法错误的是?

答案:

C

A.Java中接口不能被private或Protected修饰符修饰

B.Java中一个类可以实现多个接口,但是只能继承一个父类

C.接口中定义的成员变量,即使不说明,默认均是public\static\final的

D.final\static\native关键字不能修饰接口,

27."给出以下代码,改程序的执行结果是?

interfaceBase{

intk=0;

}

publicclassExampleimplementsBase{

publicstaticvoidmain(String[]args){

inti;

Exampleexm=newExample();

i=exm.k;

i=Example.k;

i=Base.k;

System.out.println(i);

}

}"

答案:

D

A.无内容输出

B.代码编译失败

C.代码运行时输出异常信息

D.打印输出0

28.Java语言中异常的分类是哪项?

答案:

C

A.运行时异常和异常

B.受检异常和非受检异常

C.错误和异常

D.错误和运行时异常

29."现有代码:

publicclassExample{

publicstaticvoidmain(String[]args){

try{

System.out.print(Integer.parseInt(""forty""));

}catch(RuntimeExceptione){

System.out.println(""Runtime"");

}catch(NumberFormatExceptione){

System.out.println(""Number"");

}

}

}

执行结果是什么?

"

答案:

C

A.输出Number

B.输出Runtime

C.输出40

D.编译失败

30."对以下两个代码片段说法正确的是?

代码片段1:

inta=3;

intb=0;

intc=a/b;

代码片段2:

floata=3.0f;

floatb=0.0f;

floatc=a/b;"

答案:

C

A.执行两端代码都会抛出异常

B.执行两段代码都无异常抛出

C.执行两段代码,只有代码片段1抛出异常

D.执行两段代码,只有代码片段2抛出异常

31."现有如下代码:

publicclassExampleextendsUtils{

publicstaticvoidmain(String[]args){

try{

System.out.println(newExample().getInt(""42""));

}catch(NumberFormatExceptione){

System.out.println(""NFExc"");

}

}

intgetInt(Stringarg)throwsNumberFormatException{

returnInteger.parseInt(arg);

}

}

classUtils{

intgetInt(Stringarg){

return42;

}

}

该代码执行的结果是?

"

答案:

B

A.NFExc

B.42

C.42NFExc

D.编译失败

32.关于异常处理,说法错误的是?

答案:

C

A.try…catch…finally结构中,必须有try语句块,catch语句块和finally语句块不是必须的,但至少要两者取其一

B.在异常处理中,若try中的代码可能产生多种异常则可以对应多个catch语句,若catch中的参数类型有父类子类关系,此时应该将子类放在后面,父类放在前面

C.一个方法可以抛出多个异常,方法的返回值也能够是异常

D.Throwable是所有异常的超类

33."关于以下代码,说法正确的是?

classExample{

publicstaticvoidmain(String[]args)throwsIOException{

System.out.println(""BeforeTry"");

try{

}catch(Throwablee){

System.out.println(""InsideCatch"");

}

System.out.println(""AttheEnd"");

}

}"

答案:

B

A.代码编译失败,因为无异常抛出

B.代码编译失败,因为未导入IOException异常类

C."输出BeforeTry

AttheEnd"

D."输出InsideCatch

AttheEnd"

34."以下代码执行结果是什么?

classExample{

publicstaticStringoutput="""";

publicstaticvoidfoo(inti){

try{

if(i==1){

thrownewException();

}

output+=""1"";

}catch(Exceptione){

output+=""2"";

return;

}finally{

output+=""3"";

}

output+=""4"";

}

publicstaticvoidmain(String[]args)throwsIOException{

foo(0);

foo

(1);

System.out.println(output);

}

}"

答案:

A.无内容输出

B.代码编译失败

C.输出13423

D.输出14323

35."当fragile()方法抛出一个IllegalArgumentException异常时,下列代码的运行结果是什么?

publicstaticvoidmain(String[]args)throwsIOException{

try{

fragile();

}catch(NullPointerExceptione){

System.out.println(""NullPointerExceptionthrown"");

}catch(Exceptione){

System.out.println(""Exceptionthrown"");

}finally{

System.out.println(""Donewithexceptions"");

}

System.out.println(""myMethodisdone"");

}

}"

答案:

A.输出NullPointerExceptionthrown

B.输出Exceptionthrown

C.输出DonewithException

D.输出myMethodisdone

36."给出以下代码,执行结果是?

classExample{

publicstaticvoidmain(String[]args)throwsIOException{

aMethod();

}

staticvoidaMethod(){

try{

System.out.println(""Try"");

return;

}catch(Exceptione){

System.out.println(""Catch"");

}finally{

System.out.println(""Finally"");

}

}

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

当前位置:首页 > 医药卫生 > 基础医学

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1