Java数据类型的转化专项测试题附答案_第1页
Java数据类型的转化专项测试题附答案_第2页
Java数据类型的转化专项测试题附答案_第3页
Java数据类型的转化专项测试题附答案_第4页
Java数据类型的转化专项测试题附答案_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

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

文档简介

Java数据类型的转化专项测试题附答案1.Inthecodesegmentbelow,assumethattheintvariablesaandbhavebeenproperlydeclaredandinitialized.

intc=a;

intd=b;

c+=3;

d--;

doublenum=c;

num/=d;

Whichofthefollowingbestdescribesthebehaviorofthecodesegment?Thecodesegmentstoresthevalueof(a+3)/binthevariablenum.Thecodesegmentstoresthevalueof(a+3)/(b-1)inthevariablenum.(正确答案)Thecodesegmentstoresthevalueof(a+3)/(b-2)inthevariablenum.Thecodesegmentstoresthevalueof(a+3)/(1-b)inthevariablenum.Thecodesegmentcausesaruntimeerrorinthelastlineofcodebecausenumistypedoubleanddistypeint.2.Considerthefollowingcodesegment,whichisintendedtofindtheaverageoftwopositiveintegers,xandy.

intx;

inty;

intsum=x+y;

doubleaverage=(double)(sum/2);

Whichofthefollowingbestdescribestheerror,ifany,inthecodesegment?Thereisnoerror,andthecodeworksasintended.Intheexpression(double)(sum/2),thecasttodoubleisappliedtoolate,sotheaveragewillbelessthantheexpectedresultforevenvaluesofsum.Intheexpression(double)(sum/2),thecasttodoubleisappliedtoolate,sotheaveragewillbegreaterthantheexpectedresultforevenvaluesofsum.Intheexpression(double)(sum/2),thecasttodoubleisappliedtoolate,sotheaveragewillbelessthantheexpectedresultforoddvaluesofsum.(正确答案)Intheexpression(double)(sum/2),thecasttodoubleisappliedtoolate,sotheaveragewillbegreaterthantheexpectedresultforoddvaluesofsum.3.Considerthefollowingcodesegment.

doublenum=9/4;

System.out.print(num);

System.out.print("");

System.out.print((int)num);

Whatisprintedasaresultofexecutingthecodesegment?222.02(正确答案)2.02.02.2522.252.04.Considerthefollowingcodesegment.

doublex=(int)(5.5-2.5);

doubley=(int)5.5-2.5;

System.out.println(x-y);

Whatisprintedasaresultofexecutingthecodesegment?-1.0-0.50.00.5(正确答案)1.05.Considerthefollowingcodesegment.

intw=1;

intx=w/2;

doubley=3;

intz=(int)(x+y);

Whichofthefollowingbestdescribestheresultsofcompilingthecodesegment?Thecodesegmentcompileswithouterror.(正确答案)Thecodesegmentdoesnotcompile,becausetheintvariablexcannotbeassignedtheresultoftheoperationw/2.Thecodesegmentdoesnotcompile,becausetheintegervalue3cannotbeassignedtothedoublevariabley.Thecodesegmentdoesnotcompile,becausetheoperandsoftheadditionoperatorcannotbeofdifferenttypesintanddouble.Thecodesegmentdoesnotcompilebecausetheresultoftheadditionoperationisoftypedoubleandcannotbecasttoanint.6.Considerthefollowingcodesegment.

doublex=4.5;

inty=(int)x2;

System.out.print(y);

Whatisprintedasaresultofexecutingthecodesegment?8(正确答案)8.099.0107.Considerthefollowingcodesegment.

inta=5;

intb=4;

intc=2;

a=3;

b+=a;

b/=c;

System.out.print(b);

Whatisprintedwhenthecodesegmentisexecuted?249(正确答案)9.5198.Considerthefollowingcodesegment.

num+=num;

num=num;

Assumethatnumhasbeenpreviouslydeclaredandinitializedtocontainanintegervalue.Whichofthefollowingbestdescribesthebehaviorofthecodesegment?Thevalueofnumistwotimesitsoriginalvalue.Thevalueofnumisthesquareitsoriginalvalue.Thevalueofnumistwotimesthesquareofitsoriginalvalue.Thevalueofnumisthesquareoftwiceitsoriginalvalue.(正确答案)Itcannotbedeterminedwithoutknowingtheinitialvalueofnum.9.Considerthefollowingcodesegment.

intx=5;

x+=62;

x-=3/2;

Whatvalueisstoredinxafterthecodesegmentexecutes?-1.51915.516(正确答案)10.Considerthefollowingcodesegment,wherekandcountareproperlydeclaredandinitializedintvariables.

k++;

k++;

count++;

k--;

count++;

k--;

Whichofthefollowingbestdescribesthebehaviorofthecodesegment?Thecodesegmentleavesbothkandcountunchanged.Thecodesegmentincreasesbothkandcountby2.Thecodesegmentincreaseskby4andcountby2.Thecodesegmentleaveskunchangedandincreasescountby2.(正确答案)Thecodesegmentincreaseskby2andleavescountunchanged.11.Considerthefollowingcodesegment.

inta=4;

intb=5;

a++;

b++;

intc=a+b;

a-=1;

System.out.println(a+c);

Whatisprintedwhenthecodesegmentisexecuted?9101415(正确答案)2512.Thefollowingcodesegmentisintendedtoroundvaltothenearestintegerandprinttheresult.

doubleval=-0.7;

introundedVal=(int)(val+0.5);

System.out.println(roundedVal);

Whichofthefollowingbestdescribesthebehaviorofthecodesegment?Thecodesegmentworksasintended.ThecodesegmentdoesnotworkasintendedbecausevalandroundedValshouldbedeclaredasthesamedatatype.Thecodesegmentdoesnotworkasintendedbecausetheexpression(val+0.5)shouldbecasttoadoubleinsteadofanint.Thecodesegmentdoesnotworkasintendedbecausevalshouldbecasttoanintbefore0.5isaddedtoit.Thecodesegmentdoesnotworkasintendedbecausetheexpression(int)(val+0.5)roundstothenearestintegeronlywhenvalispositive.(正确答案)13.Considerthefollowingcodesegment.

System.out.print(Idonotfearcomputers.);//Line1

System.out.println(Ifearthelackofthem.);//Line2

System.out.println(--IsaacAsimov);//Line3

Thecodesegmentisintendedtoproducethefollowingoutputbutmaynotworkasintended.

Idonotfearcomputers.Ifearthelackofthem.

--IsaacAsimov

Whichchange,ifany,canbemadesothatthecodesegmentproducestheintendedoutput?Inline1,printshouldbechangedtoprintln.Inlines2and3,printlnshouldbechangedtoprint.ThestatementSystem.out.println()shouldbeinsertedbetweenlines2and3.Inlines1,2,and3,thetextthatappearsinparenthesesshouldbeenclosedinquotationmarks.(正确答案)Nochangeisneeded;thecodesegmentworkscorrectlyasis.14.Considerthefollowingcodesegment.

System.out.print();//Line1

System.out.print("");//Line2

System.out.println();//Line3

System.out.println("");//Line4

Thecodesegmentisintendedtoproducethefollowingoutput,butmaynotworkasintended.

Whichlineofcode,ifany,causesanerror?Line1(正确答案)Line2Line3Line4Thecodesegmentworksasintended.15.Considerthefollowingcodesegment.

System.out.print("One");//Line1

System.out.print("Two");//Line2

System.out.print("Three");//Line3

System.out.print("Four");//Line4

Thecodesegmentisintendedtoproducethefollowingoutput,butdoesnotworkasintended.

OneTwo

ThreeFour

Whichofthefollowingchangescanbemadesothatthecodesegmentproducestheintendedoutput?Changingprinttoprintlninline1onlyChangingprinttoprintlninline2only(正确答案)Changingprinttoprintlninline3onlyChangingprinttoprintlninlines2and3onlyChangingprinttoprintlninlines1,2,3,and416.Considerthefollowingcodesegment.

Whatisprintedasaresultofexecutingthecodesegment?

0124(正

温馨提示

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

评论

0/150

提交评论