7250培训共享ios java笔试2010年8月Java工程师题目在试卷上面答题统一_第1页
7250培训共享ios java笔试2010年8月Java工程师题目在试卷上面答题统一_第2页
7250培训共享ios java笔试2010年8月Java工程师题目在试卷上面答题统一_第3页
7250培训共享ios java笔试2010年8月Java工程师题目在试卷上面答题统一_第4页
7250培训共享ios java笔试2010年8月Java工程师题目在试卷上面答题统一_第5页
已阅读5页,还剩1页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Betax=newBeta();

//insertcodehere

}

}

Whichcode,insertedatline16,willcauseajava.lang.ClassCastException?

Alphaa=x;

Foof=(Delta)x;

Foof=(Alpha)x;

Betab=(Beta)(Alpha)x;

Question4

WhichManclassproperlyrepresentstherelationship“ManhasabestfriendwhoisaDog”?

classManextendsDog{}

classManimplementsDog{}

classMan{privateBestFrienddog;}

classMan{privateDogbestFriend;}

classMan{privateDog<bestFriend>}

classMan{privateBestFriend<dog>}

Question5Given:

Object[]myObjects={

newinteger(12),

newString(”foo”),

newinteger(5),

newBoolean(true)

};

Arrays.sort(myObjects);

for(inti=0;i<myObjects.length;i++){

System.out.print(myObjects[i].toString());

System.out.print(”“);

}

Whatistheresult?

Compilationfailsduetoanerrorinline23.

Compilationfailsduetoanerrorinline29.

AClassCastExceptionoccursinline29.

AClassCastExceptionoccursinline31.

Thevalueofallfourobjectsprintsinnaturalorder.

Question6

Given:

publicclassPass{

publicstaticvoidmain(String[]args){

intx=5;

Passp=newPass();

p.doStuff(x);

System.out.print(”mainx=“+x);

}

voiddoStuff(intx){

System.out.print(”doStuffx=“+x++);

}

}

Whatistheresult?

Compilationfails.

Anexceptionisthrownatruntime.

doStuffx=6mainx=6

doStuffx=5mainx=5

doStuffx=5mainx=6

doStuffx=6mainx=5

Question7Given:

classNav{

publicenumDirection{NORTH,SOUTH,EAST,WEST}

}

publicclassSprite{

//insertcodehere

}

Whichcode,insertedatline14,allowstheSpriteclasstocompile?

Directiond=NORTH;

Nav.Directiond=NORTH;

Directiond=Direction.NORTH;

Nav.Directiond=Nav.Direction.NORTH;

Question8Given:

publicstaticvoidparse(Stringstr){

try{

floatf=Float.parseFloat(str);

}catch(NumberFormatExceptionnfe){

f=0;

}finally{

System.out.println(f);

}

}

publicstaticvoidmain(String[]args){

parse(”invalid”);

}

Whatistheresult?

0.0

Compilationfails.

AParseExceptionisthrownbytheparsemethodatruntime.

ANumberFormatExceptionisthrownbytheparsemethodatruntime.

Question9

Aprogrammerneedstocreatealoggingmethodthatcanacceptanarbitrarynumberofarguments.Forexample,itmaybecalledinthese

ways:

logIt(”logmessage1“);

logIt(”logmessage2”,”logmessage3”);

logIt(”logmessage4”,“logmessage5”,“logmessage6);Whichdeclarationsatisfiesthisrequirement?

publicvoidlogIt(String*msgs)

publicvoidlogIt(String[]msgs)

publicvoidlogIt(String...msgs)

publicvoidlogIt(Stringmsg1,Stringmsg2,Stringmsg3)

Question10

ClicktheExhibitbutton.

1.publicclassA{2.

3.privateintcounter=0;

4.

publicstaticintgetInstanceCount(){

returncounter;

}

publicA(){

counter++;

}

}

GiventhiscodefromClassB:

Aa1=newA();

Aa2=newA();

Aa3=newA();

System.out.printIn(A.getInstanceCount());Whatistheresult?

CompilationofclassAfails.

Line28printsthevalue3toSystem.out.

Line28printsthevalue1toSystem.out.

Aruntimeerroroccurswhenline25executes.

Compilationfailsbecauseofanerroronline28.

Question11Given:

publicstaticvoidmain(String[]args){

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

if(i>6)break;

}

System.out.println(i);

}

Whatistheresult?

6

7

10

11

Compilationfails.

Anexceptionisthrownatruntime.

Question12

Given:

publicstaticvoidsearch(List<String>list){

list.clear();

list.add(”b”);

list.add(”a”);

list.add(”c”);

System.out.println(Collections.binarySearch(list,“a”));

}

WhatistheresultofcallingsearchwithavalidListimplementation?

0

1

2

a

b

c

Theresultisundefined.

Question13

ClicktheExhibitbutton.

classFoo{

privateintx;

publicFoo(intx){this.x=x;}

publicvoidsetX(intx){this.x=x;}

publicintgetX(){returnx;}

}

publicclassG{18.

staticFoofooBar(Foofoo){

foo=newFoo(100);

returnfoo;

}

publicstaticvoidmain(String[]args){

Foofoo=newFoo(300);

System.out.print(foo.getX()+“-“);27.

FoofooFoo=fooBar(foo);

System.out.print(foo.getX()+“-“);

System.out.print(fooFoo.getX()+“-“);31.

foo=fooBar(fooFoo);

System.out.print(foo.getX()+“-“);

System.out.prmt(fooFoo.getX());

}

}

Whatistheoutputofthisprogram?

300-100-100-100-100

300-300-100-100-100

300-300-300-100-100

300-300-300-300-100

Question14

Given:

publicvoidgenNumbers(){

ArrayListnumbers=newArrayList();

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

intvalue=i*((int)Math.random());

IntegerintObj=newInteger(value);

numbers.add(intObj);

}

System.out.println(numbers);

}

WhichlineofcodemarkstheearliestpointthatanobjectreferencedbyintObj esacandidateforgarbagecollection?

Line16

Line17

Line18

Line19

TheobjectisNOTacandidateforgarbagecollection.

Question15Given:

publicclassThreads3implementsRunnable{

publicvoidrun(){

System.out.print(”running”);

}

publicstaticvoidmain(String[]args){

Threadt=newThread(newThreads3());

t.run();

t.run();

t.start();

10.}

11.}

Whatistheresult?

Compilationfails.

Anexceptionisthrownatruntime.

Thecodeexecutesandprints“running”.

Thecodeexecutesandprints“runningrunning”.

Thecodeexecutesandprints“runningrunningrunning”.

编程题:

请完成下列程序中的insert()函数,完成双向链表的建立,并使得链表中的元素从小到大有序排列。

publicclassTestDuLink{

publicstaticvoidmain(Stringargs[]){

DuLinkl=newDuLink();l.insert("4");

l.insert("6");

l.insert("5");

l.insert("1");

l.insert("2");

l.insert

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论