Java试题
1) 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) 2) 给定java代码,如下:
public byte count(byte b1,byte b2){ return______; }
要使用这段代码能够编译成功,横线处可以填入() 。 (选择一项) a) (byte) (b1-b2) b) (byte) b1-b2 c) b1-b2
d) (byte) b1/b2 3) 在Java中,在包com.db下定义一个类,要让包com.util下的所有类都可以访问这个类,这个类必须定义为()。 (选择一项) a)protected b)private c)public d)friendly
4) 在Java中,下列()语句不能通过编译。 (选择一项) a) String s= \ b) String s= \ c) int a= 3+5 d) float f=5+5.5;
5) 在Java中下列()方法可以把JFrame的布局管理器设为FlowLayout类型(选择一项) a)jFrame.setLayout(new FlowLayout() ); b) jFrame.addLayout(new FlowLayout() ) c)jFrame.setFlowLayout() d)jFrame.addFlowLayout()
6)给定java代码如下,运行时,会产生()类型的异常。(选择一项) String s=null; s.concat(\); a)ArithmeticException b)NullPointerException c)IOException d)EOFException 7) 在java中,()对象可以使用键/值的形式保存数据。 (选择一项) a)ArrayList b) HashSet
c) HashMap d) LinkedList
8) 给定如下java代码,编译运行之后,将会输出()。 public class Test{
public staticvoid main(String args[]){ int a=5;
System.out.println(a%2==1) ?(a+1) /2:a/2) ; }
} (选择一项) a)1 b)2 c)2.5 d)3 9) 以下Java语句中,String str = \执行后str中的值为。(选择一项) a) \ b) \c) \d) \
10) 给定如下java代码,以下()代码行编译会报错。(选择一项) class MyClass{
void myMethod(final int p){ final int il; final int i2=p; i1=20; i2=20; } }
a) void my Method(final int p) b) final int il; c) final int i2=p d) il=20 e) i2=20;
11) 给定如下java代码,编译时会在()出现错误。 class Parent{ }
class Child extends Parent{
public static void main(String args[]){ Parent p1=new Child() ;//第一行 Parent p2=new Parent () ;//第二行 Child c1=new Child() ;//第三行 Child c2=new Parent () ;//第四行 }
} (选择一项) a) 第一行 b) 第二行 c) 第三行 d) 第四行
12)给定某java程序的main方法,如下: public static void main (String[]arg){ System.out.print( \ }
从命令行传参:people world nation,该程序的运行结果是()。 (选择一项) a) Hello people b) Hello world
c) Hello people world nation d) 运行时出现异常
13) 给定Java代码,如下: abstract class Shape{
abstract void draw() ; }
要创建Shape类的子类Circle,以下代码正确的是() (选择二项) a) class Circle extends Shape{ int draw() {} }
b) abstract class Circle extends Shape{ }
c) class Circle extends Shape{ void draw() ; }
d) class Circle extends Shape{ void draw() {} }
14) 给定如下java代码,编译运行时,结果是()。 (选择一项) public class Test{
public static void main (String args[]) { for (int i=0;i<3; i++) {
System.out.print(i) ; }
System.out.print(i) ; } }
a) 编译时报错
b) 正确运行,输出012 c) 正确运行,输出123 d) 正确运行,输出0123
15) 给定一个Java程序的方法结构如下;以下方法体实现语句正确的是( )。(选择两