1 / 14
文档名称:

java笔试题库及其答案.doc

格式:doc   大小:92KB   页数:14
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

java笔试题库及其答案.doc

上传人:2112770869 2018/12/1 文件大小:92 KB

下载得到文件列表

java笔试题库及其答案.doc

文档介绍

文档介绍:
1) 在JAVA中,,应该使用以下( )判断语句。(选择一项)
a) if(new File(“d:”) .exists() = =1)
b) if((“d:”) = =1)
c) if(new File(“d:/”) .exists( ) )
d) if((“d:/))
答案:C
2) 在java中,()对象可以使用键/值的形式保存数据。(选择一项)
a)ArrayList
b) HashSet
c) HashMap
d) LinkedList
答案:C
3) 给定java代码,如下:
public byte count(byte b1,byte b2){
return______;
}
要使用这段代码能够编译成功,横线处可以填入() 。(选择一项)
(byte) (b1-b2)
(byte) b1-b2
c) b1-b2
d) (byte) b1/b2
答案:A
4) 在Java中,.db下定义一个类,.util下的所有类都可以访问这个类,这个类必须定义为()。(选择一项)
a)protected
b)private
c)public
d)friendly
答案:C
5) 在Java中,下列()语句不能通过编译。(选择一项)
a) String s= “join”+ “was”+ “here”;
b) String s= “join”+3;
c) int a= 3+5
d) float f=5+;
答案:D
6)给定java代码如下,运行时,会产生()类型的异常。(选择一项)
String s=null;
(“abc”);
a)ArithmeticException
b)NullPointerException
c)IOException
d)EOFException
答案:B
7) 给定如下java代码,编译运行之后,将会输出()。
public class Test{
public static void main(String args[]){
int a=5;
(a%2==1) ?(a+1) /2:a/2) ;
}
} (选择一项)
a)1
b)2
c)
d)3
答案:D
8) java程序中,main方法的格式正确的是()。(选择一项)
a)static void main(String[] args)
b)public void main(String[] args)
c)public static void main(String[]s)
d)public static void main(String[] args)
答案:D
9) 以下Java语句中,String str = “123456789”;str =(1,3);执行后str中的值为。(选择一项)
a) “23”
b) “123”
c) “12”
d) “234”
答案:A
10) 给定如下java代码,编译运行时,结果是()。(选择一项)
public class Test{
public static void main (String args[]) {
for (int i=0;i<3; i++) {
(i) ;
}
(i) ;
}
}
a) 编译时报错
b) 正确运行,输出012
c) 正确运行,输出123
d) 正确运行,输出0123
答案:A
11) Java语言中,String str=”123456789”,((“5”)),输出结果为()。(选择一项)
a) 6
b) 5
c) 4
d) -1
答案:C
12)给定某java程序的main方法,如下:
public static void main (String[] args){
( “Hello”+args[1]) ;
}
从命令行传参:people world nation,该程序的运行结果是()。(选择一项)
Hello people
Hello world
Hello people