JAVA软件工程师笔试题(二十二)

时长:60分钟 总分:100分

267浏览 1人已完成答题

题型介绍
题型 单选题 简答题
数量 18 2
JAVA软件工程师笔试题(二十二)
1.
以下给出代码运行后的结果是? public class Example { public static void main(String[] args) { int x=1; int y=~x+1; System.out.println(x+" "+y); } }
问题详情




2.
如果有int变量i和j,i的值为0xFFFFFFF1,j=~I,则j的值为?
问题详情




3.
有int变量i的值为16384,1>>33的结果为?
问题详情




4.
以下代码的执行结果是: public class Example { public static void main(String[] args) { byte x = -64; byte y = -6; System.out.println(x / y + " " + x % y); }
问题详情




5.
下面的代码段中,执行之后i 和j 的值是什么? int i = 1; int j; j = i++;
问题详情




6.
一下代码运行输出结果是? public class Example { public static void main(String[] args) { System.out.println(3.0/0); }
问题详情




7.
表达式(short)10/10.2*2运算后结果是什么类型?
问题详情




8.
public class TestPass { String str = new String("hello"); char[] ch = {'a','b','c'}; public static void main(String[] args) { TestPass ex = new TestPass(); ex.change(ex.str,ex.ch); System.out.print(ex.str + " and "); System.out.print(ex.ch); } private void change(String str,char[] ch) { str = "test ok"; ch[1] = 'g'; } } 程序运行结果?
问题详情




9.
为将数组myArray的长度由3改为6,现采取以下代码: int[] myArray = new int[3]; myArray = new int[6]; 代码执行后,以下叙述哪项是正确的?
问题详情




10.
数组拷贝方法在哪个类中?
问题详情




11.
以下代码的执行结果是? public class Example { public static void main(String[] args) { Element[] a1 = new Element[1]; Element[][] a2 = new Element[2][1]; Element[][][] a3 = new Element[3][3][3]; System.out.print(a3[2][2][2]); a1[0] = new Element(); a2[0] = a2[1] = a1; a3[0] = a3[1] = a3[2] = a2; System.out.print(a3[2][2][2]); } } class Element { }
问题详情




12.
以下哪个语句实现了声明一个二维整数数组?
问题详情




13.
下面哪个选项正确?
问题详情




14.
下面哪个是正确的二维数组声明?
问题详情




15.
以下代码执行的结果是: public class Example { public static void main(String[] args) { int[] x = { 1, 2, 3 }; x[1] = (x[1] > 1) ? x[2] : 0; System.out.println(x[1]); } }
问题详情




16.
给出下面代码: public class Example{   static int arr[] = new int[10];   public static void main(String a[])   {    System.out.println(arr[1]);   } } 那个语句是正确的?
问题详情




17.
下列代码的执行结果是什么? public class Example { public static void main(String[] args) { int index = 1; int[] foo = new int[3]; int bar = foo[index]; int baz = bar + index; System.out.println(baz); } }
问题详情




18.
以下哪个语句用于获取数组中的元素个数?
问题详情




19.
java进行io操作后,为什么要关闭流?
问题详情
20.
File类的作用?
问题详情