题目列表
一、单项选择题
- 【单选题】1. 以下是合法的byte类型的数据的是______。
- 【单选题】2. 有如下代码: byte b=(byte)129; 那么,变量b的值为______。
- 【单选题】3. 以下表达式中,正确的是______。
- 【单选题】4. 有下面两个赋值语句: (1)a=Integer.parseInt("12"); (2)b=Integer.valueOf("12").intValue(); 以下关
- 【单选题】5. 在整型数据类型中,需要内存空间最少的是______。
- 【单选题】6. 有如下代码: public class Test { public static void main(String args[]) { int i; i=6; System.out.pr
- 【单选题】7. 下列运算符合法的是______。
- 【单选题】8. 有如下代码: a=0; c=0; do{ --c; a=a-1; }while(a>0); 当执行完以上代码后,变量c的值是______。
- 【单选题】9. 表达式4&7的运算结果是______。
- 【单选题】10. 有如下代码: long temp=(int)3.9; temp%=2; 那么,变量temp的最终值是______。
- 【单选题】11. Java语言中字符使用Unicode编码,每个Unicode码占用______比特位。
- 【单选题】13. 有如下代码: int n=999; n--; ++n; System.out.println(n++); 以上程序中,程序的运行结果为______。
- 【单选题】14. 使i+1<i的数______。
- 【单选题】15. 有如下代码: public class Test { public int test() { int i; i++; return i; } public static void ma
- 【单选题】16. 有如下代码: public class Test { static int i; public int test() { i++; return i; } public static
- 【单选题】17. 如果x=1,y=2,z=3,则表达式y+=z-/++x的值是______。
- 【单选题】18. 有如下定义:Short a=128; byte b=(byte)a;,则经过强制类型转换以后,变量a和变量b的值分别为______。
- 【单选题】19. 有如下代码: Integer i=new Integer(4); Long l=new Long(4); Double d=new Double(4.0); 下面选项中,返
- 【单选题】20. 有如下代码: int x=8,y=2,z; x=++x*y; z==x/y++; 在执行完后,变量x和变量y的值分别是______。
- 【单选题】21. 对于1.0/0.0的返回值,下面说法正确的是______。
- 【单选题】22. 以下描述中,能够创建一个数组实例的是______。
- 【单选题】23. 在Java语言中,以下定义数组的语句正确的是______。
- 【单选题】24. 有如下代码: public class Test { public static void main(String argv[]) { int[] arr=new int[5]; Sy
- 【单选题】25. 有如下代码: public class Person { static int arr[]=new int[10]; public static void main(String a[
- 【单选题】26. 有如下代码: String s="xbcde"; System.out.priutln(s.charA.t(4)); 以下针对上述代码段的描述中,正确
- 【单选题】27. 有如下代码: public class Test { public void change(String str,char ch[]) { str="test ok"; ch[0]
- 【单选题】28. "hello" instanceof Object的返回值是______。
二、多项选择题
- 【多选题】1. 下面不是Java语言的原始数据类型的有______
- 【多选题】2. 以下表达式中,正确的有______。
- 【多选题】3. 下列关于数组的描述中,错误的有______。
- 【多选题】4. 下面语句中,正确地声明一个整型的二维数组的有______。
- 【多选题】5. 下面能够生成5个空字符串的语句有______。
- 【多选题】6. 以下声明数组的方式中,正确的是______。
- 【多选题】7. 执行下列代码后:String[]s=new String[10];,以下描述正确的是______。
- 【多选题】8. 下面关于String、StringBuilder以及StringBuffer的描述中,正确的是______。
三、填空题
- 【填空题】1. 在Java语言中,char型采用Unicode编码方案,每个Unicode码占用______字节内存空间,这样,无论是中文字符还是英
- 【填空题】2. 假设i=2,那么表达式(i++)/3的值为______。
- 【填空题】3. 有如下代码: public class Test{ public static void main(String[] args){ System.out.println(Math.min
- 【填空题】4. 有如下代码: class Test{ class Dog{ private String name; private int age; private int step; Dog(Str
- 【填空题】5. 设有数组定义:int arr[]={10,20,30,40,50,60,70};,则执行以下几个语句后的输出结果是______。 int s=0; fo
- 【填空题】6. 有如下程序: String str1="hello world"; String str2="hello"+new String("world"); System.out.p
- 【填空题】7. 字符串分为两大类:一类是字符串常量______;另一类是字符串变量______。