11.请阅读下面的程序,下列选项中,哪个是程序的运行结果?( ) Public class Test { public static void main(String[] args) { int a = 0;int b = 0;for (int i = 1; i <= 5; i++) {a = i % 2;while (a-- >= 0) {b++;}}System.out.println(/"a=/" + a + /",b=/"+ b); } }
12.下面的运算符中,用于执行除法运算是哪个?( )
13.请阅读下面的程序,下列选项中,哪个是程序的运行结果?( ) public class Test { public static void main(String[] args) { int x;int y;for (x = 1, y = 1; x <= 100; x++) {if (y >= 20) {break;}if (y % 3 == 1) {y += 3;continue;}y -= 5;}System.out.println(“x=” + x + “,y=” + y); } }
14.下列选项中,哪一个是多行注释符号?( )
15.下列关于注释作用的描述中,错误的是( ) 。
16.下列选项中,不属于位运算符的是( )。
17.阅读下面的程序,下列选项中,可以在main()方法中调用add()方法的是( )。 copyright www.ddzy8.com public static int add(int a,int b) { return a + b;}
18.阅读下面的程序,下列选项中,哪个是程序的运行结果?( ) copyright www.ddzy8.com public class Test { public static void main(String[] args) { for(int x = 0 ; x <=3 ; x++) { continue; System.out.print(x%2); } } }
19.下列关于while语句的描述中,正确的是( )。
20.请阅读下列示例代码,选择程序的输出结果。( ) 电大资源吧www.ddzy8.com int a = 1; int b = a++; int c = ++a; int d = a++ + ++a; System.out.print(a + /",/" + b + /",/" + c + /",/" + d);
21.下列选项中,哪一个是单行注释的符号?( )
22.以下程序的运行结果是( )。 电大资源吧www.ddzy8.com public class Example03 { public static void main(String[] args) { int x = 8; if (x > 5) { System.out.println(/"a/"); } else { System.out.println(/"b/"); } } }
23.下列选项中,不属于比较运算符的是( )。
24.请阅读下面的程序,下列选项中,哪个是程序的运行结果?( ) 本文来www.ddzy8.com电大资源吧 public class Test { public static void main(String[] args) {int temp = 0;for (int i = 1; i < 5; i++) {for (int j = 0; j < i; j++) {temp++;}}System.out.println(temp);} }
25.以下程序运行结束时,变量y的值为下列哪一项?( )
copyright www.ddzy8.com
int x = 1; int y = 2; if (x % 2 == 0) { y++;} else { y--;} System.out.println(/"y=/" + y);
26..下面选项中,哪一个不是Java中的关键字?( )
27.下面关于方法定义的描述中,正确的是( )。
28.下列转义字符中,不合法的是( )。
29.Java属于以下哪种语言? ( )
30.以下程序运行后sum的值为( )。 public class Test { public static void main(String[] args) {int sum = 0;for (int i = 1; i <= 100; i++) {if (i % 2 == 1) {continue;}sum += i;}System.out.println(/"sum = /" + sum);} }
34.以下程序的运行结果是( )。 public class Test { public static void main(String[] args) {int temp = 0;for (int i = 1; i < 5; i++) {for (int j = 0; j < i; j++) {temp++;}}System.out.println(temp);} }
35.下列关于case关键字的说法中,错误的是( )。
36.下列关于Java特点的描述中,错误的是( )。
37.下面选项中,( )是短路与运算符。
38.下列选项中,哪个是程序的运行结果?( ) ddzy8.com class Test { public static void main(String[] args) { int a = 3; int b = 6; System.out.print(a==b); System.out.print(a<b); System.out.print(a!=b); System.out.print(a>=b); } }