- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Java期中测验试卷
2008—2009第二学期《Java程序设计》测验一
班级: 学号: 姓名: 分数:
一、选择题(每小题分,共0分)1、编译Java?Application?源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为(??????)。????A、???.java???????????????????? ??B、????.class
????C、????.html??????????????????????D、???.exe
2、设?x?=?1?,?y?=?2?,?z?=?3,则表达式??y+=z--/++x??的值是(??????)。????A、???3???????????????????? ?? B、????3.?5
????C、??4????????????????????? ? ?? D、????5
3、main方法是Java??Application程序执行的入口点,关于main方法的方法头以下哪项是合法的(?????)?A、?public??static??void??main(?)B、?public??static??void???main(?String??args[]?)C、 public?static?int??main(String??[]?arg?)D、 public??void??main(String??arg[]?)4、在编写Java??Application程序时,若需要使用到标准输入输出语句,必须在程序的开头写上(??????)语句。???? A、import???java.awt.*?;??????????B、import???java.applet.Applet?;? ?C、import???java.io.*?;??????????? D、import???java.awt.Graphics?;Which of the following are legal statements?
A、 float f=1/3; B、int i=1/3;
C、 float f=1.01; D、double d=999d;
6、Which of the following are Java keywords?
A、 NULL B、 new
C、 instanceOf D、 wend
7、Which of the following are valid statements?
A、 System.out.println(1+1); B、 int i=2+2;
C、 cD、byte b=255;
8、Which of the following statements are true?
A byte can represent between -128 to 127
A byte can represent between -127 to 128
A byte can represent between -256 to 256
A char can represent between -2x2 pow 16 2 x2 pow 16 – 1
9、Given the following declaration
Integer i=new Integer(99);
How can you now set the value of i to 10?
A、 i=10; B、 i.setValue(10);
C、 i.parseInt(10);D、 none of the above
10、What will happen if you try to compile and run the following code?
import java.awt.*;
public class FlowAp extends Frame{
public static void main(String argv[]){
FlowAp fa=new FlowAp();
fa.setSize(400,300);
fa.setVisible(true);
}
FlowAp(){
add(new Button(One));
add(new Button(Two));
add(new Button(Three));
add(new Button(Four));
}//End of constructor
}//End of Application
A、 A Frame w
文档评论(0)