




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 系统集成与业务结合试题及答案
- 工程造价分析试题及答案
- 系统分析师考试个人提高计划试题及答案
- 城镇土地买卖合同协议书
- 系统分析师知识要点试题及答案
- 苹果企业规章管理制度
- 药师管理试题及答案
- 粮油存放仓库管理制度
- 红枣车间安全管理制度
- 精准扶贫培训管理制度
- 医院传染病管理工作小组及职责
- 保险公司迎检工作方案
- 除颤仪的使用方法及操作流程
- 2025年广东省深圳市31校联考中考二模化学试题(含答案)
- 规范网络设备管理制度
- 2025年铁路列车员(中级)职业技能鉴定参考试题库-下(判断题)
- 电商运营岗位技能测试卷
- 2025工程建设项目多测合一成果报告书范本
- 麻醉科麻精药品PDCA管理
- 语言习得神经机制探究-深度研究
- 儿童发展问题的咨询与辅导-案例1-5-国开-参考资料
评论
0/150
提交评论