一.单选题
1) 在JA V A中,要判断D盘下是否存在文件abc.txt,应该使用以下()判断语句。(选择一项)
a) if(new File(“d:abc.txt”) .exists() = =1)
b) if(File.exists(“d:abc.txt”) = =1)
c) if(new File(“d:/abc.txt”) .exists( ) )
d) if(File.exists(“d:/abc.txt))
答案:C
2) 在java中,()对象可以使用键/值的形式保存数据。(选择一项)
a)ArrayList
b) HashSet
c) HashMap
d) LinkedList
答案:C
3)给定java代码,如下:
public byte count(byte b1,byte b2){
return______;
}
要使用这段代码能够编译成功,横线处可以填入()。(选择一项)
a)(byte) (b1-b2)
b)(byte) b1-b2
c) b1-b2
d) (byte) b1/b2
答案:A
4)在Java中,在包com.db下定义一个类,要让包com.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+5.5;
答案:D