1、选择题1:给出下面的代码片断。。。下面的哪些陈述为错误的? 1) public void create() { 2) Vector myVect; 3) myVect = new Vector(); 4) } 给出下面的代码片断。。。下面的哪些陈述为错误的?1)publicvoidcreate(){2)VectormyVect;3)myVect=newVector();4)}A.第二行的声明不会为变量myVect分配内存空间。B.第二行语句创建一个Vector类对象。C.第三
2、行语句创建一个Vector类对象。D.第三行语句为一个Vector类对象分配内存空间2:publicclassParent{ intchange(){…}}classChildextendsParent{}WhichmethodscanbeaddedintoclassChild?A.publicintchange(){}B.abstractintchang(){}C.privateintchange(){}D.none3:String s=”Example String”;Which opera
3、tion is not legal? Strings=”ExampleString”;Whichoperationisnotlegal?A.inti=s.length();B.s[3]=”x”;C.Stringshort_s=s.trim();D.Stringt=”root”+s;4:WhichcodefragmentswouldcorrectlyidentifythenumberofargumentspassedviacommandlinetoaJavaapplication,excludet
5、段、编码阶段C.设计阶段、编码阶段、维护阶段D.计划阶段、编码阶段、测试阶段6:What will happen when you attempt to compile and run the following code? int Output = 10; boolean b1 = false; if((b1 == true) && ((Output += 10) == 20)) { System.out.println("We are equal " +
8、7:关于垃圾收集的哪些叙述是对的。A.程序开发者必须自己创建一个线程进行内存释放的工作。B.垃圾收集将检查并释放不再使用的内存。C.垃圾收集允许程序开发者明确指定并立即释放该内存。D.垃圾收集能够在期望的时间释放被java对象使用的内存。8:What will be the result of executing the following code? public static void main(String args[]) { char digit = 'a