10.(单选题)下列程序的功能是在控制台上,每隔1秒钟显示字符串"Hello",能够填写在程序中下划线位置,使程序完整,并能够正确运行的语句是( ) public class Test implements Runnable{ public static void main(String[] args){ Test t=new Test(); Thread tt=new Thread(t); tt.start(); } public void run(){ for(;;){ try{ __________ }catch(_________ e ){} System.out.println(“Hello”); } } }
12.(单选题)下列代码哪行会出错() 1) public void modify() { 2) int i, j, k; 3) i = 100; 4) while ( i > 0 ) { 5) j = i * 2; 6) System.out.println("The value of j is " + j); 7) k = k + 1; 8) i--; 9) } 10) }
解析:变量k没有被初始化
13.(单选题)如果数据库是mysql,则generator属性值不可以使用(B)。
正确答案为:D 解析:sequence :生成long, short或者int类型的主键。适用于DB2, PostgreSQL, Oracle, SAP DB, McKoi,Interbase.
14.(单选题)下面代码的运行结果为:() public class foo{ public static void main (String[] args){ String s; System.out.println("s=" + s); } }
正确答案为:C 解析:Java中所有定义的基本类型或对象都必须初始化才能输出值。
15.(单选题)下面的方法,当输入为2的时候返回值是多少?() public static int getValue(int i) { int result = 0; switch (i) { case 1: result = result + i; case 2: result = result + i * 2; case 3: result = result + i * 3; } return result; }